Maison  >  Article  >  interface Web  >  jQuery 的全选(全非选)即取得被选中的值使用介绍_jquery

jQuery 的全选(全非选)即取得被选中的值使用介绍_jquery

WBOY
WBOYoriginal
2016-05-16 17:15:561337parcourir

页面代码

复制代码 代码如下:



全部



















js中的代码
复制代码 代码如下:

/*js部分
* 绑定批量选定/非选
* 例子
*/

$(function () {
$("#checkall").click(function () {
var stu = $(this).attr("checked");
checkAll(stu);
})
$("input[name='checkbox']").click(function () {
uncheckAll();
})
})
function checkAll(status) {
$("input[name='checkbox']").each(function () {
$(this).attr("checked");
$(this).attr("checked", status);
})
}

function uncheckAll() {
alert($("input[name='checkbox']:checked").length);
if ($("input[name='checkbox']:checked").length == $("input[name='checkbox']").length) {
$("#checkall").attr("checked",true);
}
else {
$("#checkall").attr("checked", false);
}
}
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn