试图取消选中一个单选按钮,但奇怪的是它似乎不起作用。
代码如下
$('#hkitdyn15').attr("checked",false);
这也行不通
$('#hkitdyn15').prop("checked",false);
这也行不通
$('#hkitdyn15').removeAttr("checked");
在页面加载时,我的单选按钮生成为图像,但它仍然具有选中的属性
<img id="hkitdyn15" style="width: 17px; height: 12px;" src="htmlkit/enabled_radio_checked.gif" checked="false">
<input id="hkitdyn14" class="radio" type="radio" value="checkToRetrieveMessageNames" name="bulkGroup" style="float: left; display: none;">
有任何想法吗?