当使用 jQuery 1.8.3 版本时,以下代码显示包含“Radio1 Selected”、“Radio2 Selected”或“Radio3 Selected”的警报框,以响应单选按钮上的单击事件。但是,之后的任何版本都显示“未选择”。任何想法为什么?谢谢
<html>
<head>
<title></title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
function radioClicked(){
if ($('#radio1').attr('checked') == 'checked') alert('Radio 1 Selected');
else if ($('#radio2').attr('checked') == 'checked') alert('Radio 2 Selected');
else if ($('#radio3').attr('checked') == 'checked') alert('Radio 3 Selected');
else alert('None Selected');
}
</script>
</head>
<body>
<label for="radio1">Radio 1</label><input type="radio" id="radio1" name="radios" onclick="radioClicked()" />
<label for="radio2">Radio 2</label><input type="radio" id="radio2" name="radios" onclick="radioClicked()" />
<label for="radio3">Radio 3</label><input type="radio" id="radio3" name="radios" onclick="radioClicked()" />
</body>
</html>