熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

jquery實現全選反選功能

2022-06-13   來源: JSP教程 

  全選功能
$(function () {
$(#allchecked)click(function () {
if ($(#allchecked:checked)) {
$(td input)attr(checked true);
}
if (!$(#allchecked)attr(checked)) {
$(td input)attr(checked false);
}
})
反選功能
$(#Checkbox)click(function () {
if ($(#Checkbox)attr(checked)) {
if ($(td input)attr(checked))//選中的
{
var bufen = $(td input)each(function () {
$(this)attr(checked !$(this)attr(checked))
})
}
}

})
})


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20626.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.