jquery radio获取是否被选中的信息 radio $('#a').attr('checked')==“checked”为什么不行?
<inputid="a"type="radio"/>类似这样的标签,为什么获取不到他是否被选中啊???...
<input id="a" type="radio"/> 类似这样的标签,为什么获取不到他是否被选中啊???
展开
1个回答
展开全部
radio不能用“checked”相等来判断,只用用true来判断
<script type="text/javascript">
$(function () {
$("input").click(function () {
if ($(this).attr("checked")) {
alert("选中了");
}
});
});
</script>
</head>
<body>
<input type="radio"/>
</body>
</html>
<script type="text/javascript">
$(function () {
$("input").click(function () {
if ($(this).attr("checked")) {
alert("选中了");
}
});
});
</script>
</head>
<body>
<input type="radio"/>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询