jqueyr判断checkbox组的选中(示例代码)
时间:2021-03-24 10:28:54|栏目:jquery|点击: 次
html:
<tr>
<td align="right">
</td>
<td align="left" colspan="3">
<input type="checkbox" class="checkboxListItem" name="checkItem" value="3" id="slsa_approval" />批准
<input type="checkbox" class="checkboxListItem" name="checkItem" value="4" id="slsa_noApproval" />不批准
</td>
</tr>
jquery :
$(function () {
$(".checkboxListItem").change( //教师
function () {
var $checkValue = $("input[name='checkItem']:checked").val();
if ($checkValue == 3) {
$("#slsa_approval").attr("checked", true);
$("#slsa_noApproval").attr("checked", false);
}
else {
$("#slsa_approval").attr("checked", false);
$("#slsa_noApproval").attr("checked", true);
}
});
});
通过值的判断:
var checkCheckbox = $("#slsa_approval").attr("checked");
if (checkCheckbox == true) {
auditState = "3";
} else {
auditState = "4";
}
复制代码 代码如下:
<tr>
<td align="right">
</td>
<td align="left" colspan="3">
<input type="checkbox" class="checkboxListItem" name="checkItem" value="3" id="slsa_approval" />批准
<input type="checkbox" class="checkboxListItem" name="checkItem" value="4" id="slsa_noApproval" />不批准
</td>
</tr>
jquery :
复制代码 代码如下:
$(function () {
$(".checkboxListItem").change( //教师
function () {
var $checkValue = $("input[name='checkItem']:checked").val();
if ($checkValue == 3) {
$("#slsa_approval").attr("checked", true);
$("#slsa_noApproval").attr("checked", false);
}
else {
$("#slsa_approval").attr("checked", false);
$("#slsa_noApproval").attr("checked", true);
}
});
});
通过值的判断:
复制代码 代码如下:
var checkCheckbox = $("#slsa_approval").attr("checked");
if (checkCheckbox == true) {
auditState = "3";
} else {
auditState = "4";
}
栏 目:jquery
下一篇:JQuery UI DatePicker中z-index默认为1的解决办法
本文标题:jqueyr判断checkbox组的选中(示例代码)
本文地址:http://www.codeinn.net/misctech/86826.html