美文网首页
关于radio一些总结

关于radio一些总结

作者: xiaolin_188 | 来源:发表于2016-05-13 16:02 被阅读0次

关于radio一些总结

<label><input type="radio" name="sex" value="男" id="man" checked>男</label>
<label><input type="radio" name="sex" value="女" id="woman">女</label>
<script type="text/javascript">
    $('input[name="sex"]:checked').val();//获取选中的值

    $('#man').attr('checked');//是否选中 返回checked
    $('#man').is(':checked');//是否选中 返回true
    $('#man').prop('checked');//是否选中 返回true

    $('#woman').attr('checked', true);//设置选中
    $('#woman').attr('checked', 'checked');//设置选中

    $('#woman').attr('checked', false);//取消选中
    $('#woman').removeAttr('checked');//取消选中
</script>

相关文章

网友评论

      本文标题:关于radio一些总结

      本文链接:https://www.haomeiwen.com/subject/pmcmrttx.html