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