我的页面上有2个单选按钮:
<input id="rb1" type="radio" name="rmode" />
<input id="rb2" type="radio" name="rmode" />
如何确定使用jquery选择哪一个?
答案 0 :(得分:2)
答案 1 :(得分:2)
...
<input type="radio" name="sample" value="1" />
<input type="radio" name="sample" value="2" checked="checked" />
<input type="radio" name="sample" value="3" />
...
//javascript code
<script type="text/javascript">
<!--
// displays the selected radio button in an alert box
alert($('input[name=sample]:checked').val())
-->
</script>
答案 2 :(得分:1)