input里的 checkbox的选中判断问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input里的 checkbox的选中判断问题相关的知识,希望对你有一定的参考价值。
1. var status=$("#rem").attr("checked");
console.log(status) //原则上没错 但是出现的是 undefined
2. var status=$("#rem").is(":checked");
console.log(status) //true 或 false
3. var status= $(‘#rem‘).prop(‘checked‘);
console.log(status) //true 或 false
以上是关于input里的 checkbox的选中判断问题的主要内容,如果未能解决你的问题,请参考以下文章