$("#selectAll").click(function () {
$("[name='Fruit']").each(function () {
if ($(this).attr("checked")) {
$(this).removeAttr("checked");
}
else {
$(this).attr("checked", "true");
count = $("[name='Fruit']:checked").length;
}
});
});
$("#btn_HCYZD").click(function () {
var ids = "";
$("[name='Fruit']").each(function () {
if ($(this).attr("checked")) {
if (ids == "") {
ids = ids + $(this).val();
}
else {
ids = ids + "," + $(this).val();
}
}
});
if (ids == "") {
alert("请选择");
return false;
}
document.location.href = "/?Ids=" + ids + "";
});
全选反选
最新推荐文章于 2025-01-24 21:26:58 发布