HTML:
<input id="otherCheckbox2" type="checkbox" value="Accepted" style="color: Black" class="chkdisplay" onchange="javascript:othercheckbxdisplay();" />
<span style="color: Black">Accepted</span> <br />
<input id="otherCheckbox3" type="checkbox" value="Contracted" style="color: Black" class="chkdisplay" onchange="javascript:othercheckbxdisplay();" />
<span style="color: Black">Contracted</span> <br />
<input id="otherCheckbox4" type="checkbox" value="Pending" style="color: Black" class="chkdisplay" onchange="javascript:othercheckbxdisplay();" />
<span style="color: Black">Pending</span><br />
<input id="otherCheckbox5" type="checkbox" value="Pre-Authorized" style="color: Black" class="chkdisplay" onchange="javascript:othercheckbxdisplay();" />
<span style="color: Black">Pre-Authorized</span> <br />
<input id="otherCheckbox6" type="checkbox" value="Show Deleted" style="color: Black" class="chkdisplay" onchange="javascript:othercheckbxdisplay();" />
<span style="color: Black">Show Deleted</span> <br />
<input id="otherCheckbox7" type="checkbox" value="Treated" style="color: Black" class="chkdisplay" onchange="javascript:othercheckbxdisplay();" />
<span style="color: Black">Treated</span> <br />
我的javascript函数与jquery但它不起作用。
在点击按钮上调用此功能。当我点击按钮alert("hi");
被激活但不是alert(index);
也解释了我的主要问题而且只是我解释这个问题的方式
function ShowHideDxColumn() {
alert("hi");
$(".ckhdisplay").each(function (index) {
if ($(this).is(":checked")) {
alert(index);
}
});
}
谢谢你
答案 0 :(得分:3)
您输入错误,.ckhdisplay
应为.chkdisplay
。因此,您的.each
调用没有迭代的元素,因为给定的类没有。
function ShowHideDxColumn() {
alert("hi");
$(".chkdisplay").each(function (index) {
if ($(this).is(":checked")) {
alert(index);
}
});
}
你实际上并不需要每个条件中的条件,你只需选中选中的复选框:
$(".chkdisplay:checked").each(function(index){
console.log(this);
});
答案 1 :(得分:0)
请试试这个:
$.each($(".chkdisplay"), function(index, element) {
if ($(this).attr('checked')){
alert(index);
}
});