2013年9月18日 星期三

jQuery 將所有選項全選



語法

將所有 checkbox 全部勾選
$('input[type=checkbox]').each(function(j){
$(this).attr('checked',true);
});

將所有 radio 選項全部勾選

$('input[type=checkbox]').each(function(j){
$(this).attr('checked',true);
});

將所有選項全部勾選

$('input').each(function(j){
$(this).attr('checked',true);
});

沒有留言:

張貼留言