checkbox选中的问题(Ajax.BeginForm)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了checkbox选中的问题(Ajax.BeginForm)相关的知识,希望对你有一定的参考价值。
判断checkbox选中的方法
方法一:if ($("#checkbox-id")get(0).checked) { // do something}
方法二:if($(‘#checkbox-id‘).is(‘:checked‘)) { // do something}
方法三:if ($(‘#checkbox-id‘).attr(‘checked‘)) { // do something}
在一些特殊的情况下 checkbox选中会取不到 属性 checked, 如:Ajax.BeginForm
这时采用方法二,会比较好
以上是关于checkbox选中的问题(Ajax.BeginForm)的主要内容,如果未能解决你的问题,请参考以下文章
easyui datagrid checkbox 选中自动选中它所在的行,怎么做,默认你选中行则自动选中checkbox,可是你选