最佳答案
我有一些无线电在我的网页,我想做的事情时,检查无线电的变化,但代码不工作的 IE:
$('input:radio').change(...);
在谷歌搜索之后,人们建议使用 点击代替,但是它不起作用。
这是示例代码:
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script type="text/javascript">
$('document').ready(
function(){
$('input:radio').click(
function(){
alert('changed');
}
);
}
);
</script>
</head>
<body>
<input type="radio" name="testGroup" id="test1" />test1<br/>
<input type="radio" name="testGroup" id="test2" />test2<br/>
<input type="radio" name="testGroup" id="test3" />test3</br>
</body>
</html>
它也不工作在 IE。
所以我想知道发生了什么?
我还担心,如果我点击一个选中的收音机,它是否会重新触发更改事件?
更新:
我不能添加评论,所以我在这里回复。
我使用 IE8和链接 Furqan 给我也不工作在 IE8。我不知道为什么..。