這篇文章主要介紹了jquery中radio checked問題的解決方案,在此感謝2位熱心網(wǎng)友給予的幫助,記錄下來,分享給小伙伴們
今天太鬼火了為這個(gè)難問題搜了一下午了到最后還是csdn的朋友給了我正確的答案,謝謝這位朋友
// $(#isok1).checked = checked;
// $(#isok1).attr(checked, true);
//$(#radio1).attr(checked, true);
// $(#radio1).checked = checked;
$(#isok1)[0].checked = true;
另外感謝另外一位網(wǎng)友告訴我
如果是用jquery1.9以后版本,attr應(yīng)該不管用了,要用$(this).prop(checked, true);$(this).removeattr(checked);選中和去除選中