<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; //选中第二个
檢定是可以的。能選中,且頁面能顯示正確。
以上所述就是本文的全部內容,希望大家能夠喜歡。