$("#btnCheckAll").bind("click", function () { $("[name = chkItem]:checkbox").attr("checked", true);
});
// Select none $("#btnCheckNone").bind("click", function () { $("[name = chkItem]:checkbox"). attr("checked", false); }); // Reverse selection $("#btnCheckReverse").bind("click", function () { $("[name = chkItem]:checkbox").each(function () { $(this).attr("checked", !$(this).attr("checked")); }); }); // Select none $("#btnSubmit").bind("click", function () { var result = new Array(); $(" [name = chkItem]:checkbox").each(function () { if ($(this).is(":checked")) { result.push($(this).attr(" value")); } }); alert(result.join(",")); }); });
Today's topic Visual Focus Finance Car Technology Real Estate Travel
2. Checkbox table selects
Rendering:
Code:
Copy code The code is as follows:
分类名称
今日话题
视觉焦点
财经
汽车
科技
房产
旅游
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn