我正在尝试检查收音机。
[编辑]
$('selector').attr('checked','checked');
$('selector').attr('checked',true);
下面代码中的两个alert()分别显示"1"和"a"。
Opera 确实检查了其浏览器中的第二个单选框,但其元素检查器 Dragonfly 显示 DOM 未更改。
[编辑结束]
在发布这个问题之前我已经阅读了常见问题解答:
http://docs.jquery.com/Frequently_Asked_Questions
非常感谢您的帮助!
TIA
xhtml页面和代码如下:
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Weird Behavior</title>
<script type="text/javascript" src="scripts/jquery.js"/>
<script type="text/javascript">
function clickme(){
alert($('input[name="myname"][value="b"]').length);
$('input[name="myname"][value="b"]').attr('checked','checked');
$('#b').attr('checked',true);
alert($('input[name="myname"][checked]').val());
};
</script>
</head>
<body>
<form action="">
<fieldset>
<legend>Why check is not switched?</legend>
<input type="radio" name="myname" value="a" id="a" checked="checked"/>A
<input type="radio" name="myname" value="b" id="b"/>B
</fieldset>
</form>
<p>
<button type="button" onclick="clickme()">click me</button>
</p>
</body>
</html>
答案
对于 jQuery,永远不要使用内联onclick
JavaScript。onclick
完全地。
另外,请注意使用:checked
最后一行中的伪选择器。:checked
选择器会过滤实际检查的元素,无论 html 开头是什么。
$('button').click(function() {
alert($('input[name="myname"][value="b"]').length);
$('input[name="myname"][value="b"]').attr('checked','checked');
$('#b').attr('checked',true);
alert($('input[name="myname"]:checked').val());
});