javascript

位置:IT落伍者 >> javascript >> 浏览文章

jquery实现全选反选功能


发布日期:2024年05月17日
 
jquery实现全选反选功能

全选功能
$(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))
})
}
}

})
})

上一篇:javascript中的toFixed固定小数位数实例

下一篇:jQuery实现类似淘宝购物车全选状态示例