Input类型是checkbox时checked属性获取

Posted qinmp

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Input类型是checkbox时checked属性获取相关的知识,希望对你有一定的参考价值。

记录一下checkbox 的 checked 属性的获取办法,以备忘记:

假如你的一个html页中有这么一段代码:

       <input name="chbRem" id="chbRem" type="checkbox" checked="checked"> 

那么如何通过JQuery获得chbRem的checked状态呢:

错误的写法如下:

      alert(  $("#chbRem").attr("checked")   );

正确的获取方式应该是:

      alert(  $("#chbRem")[0].checked   );

此时,会输出ture。

以上是关于Input类型是checkbox时checked属性获取的主要内容,如果未能解决你的问题,请参考以下文章

关于input标签checkbox属性 和checked

JQuery里input属性赋值,取值prop()和attr()方法?

每天一点点之vue框架开发 - vue坑-input 的checked渲染问题

jquery---checked,indeterminate都为true冲突

jQuery中使用attribute,prop获取,设置input的checked值

jQuery中使用attribute,prop获取,设置input的checked值