Posted in Javascript onJuly 03, 2015
<input type="radio" name="test"/> <input type="radio" name="test" id = "input2"/>
(说明:使用的jquery 版本是 1.10.2。)
使用 jquery 的removeAttr(),清除掉 radio 的checked属性后。使用 attr('checked',true)可以给对应的radio 附上 checked属性。但是页面展示,却没有选中。
解决方法:
使用原生js 代码实现。
var inputList = document.getElementByName("test"); for(var x=0;x<inputList.length;x++){ inputList[x].checked=false; //取消选中 } var input = document.getElementById("input2"); input.checked = true; //选中第二个
测试是可以的。能选中,且页面能显示正确。
以上所述就是本文的全部内容,希望大家能够喜欢。
解决jquery实现的radio重新选中的问题
- Author -
hebedich声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@