萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> jquery實現全選反選功能

jquery實現全選反選功能

 

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

})
})

copyright © 萬盛學電腦網 all rights reserved