$("#chkall").click(function () {
var checked = $(this).attr("checked");
if (checked == "checked") {
$(".checkry").attr("checked", "checked");
}
else {
$(".checkry").removeAttr("checked");
}
});
坐等解答,下面为什么弹出来是空??
$("#addshez").click(function () {
var xms = "";
for (var i = 0; i < $("checkry").length; i++) {
if ($("#checkry").attr("checked") == "checked") {
xms = xms + $("#checkry").val() + ",";
}
}
alert(xms);
for (var i = 0; i < $(".checkry").length; i++) {
if ($(".checkry").children(i).attr("checked") == "checked") {
xms = xms + $(".checkry").children(i).val() + ",";
}
}
不对,我试了还是弹出的空白,什么也没有??
@Lie to me: 不好意思写错了
children(i)换成eq(i)
@飞来飞去: 没事,试试。
有东西了,都是undefined.这又是什么问题?
没事,是有两个children(i), 谢谢了。