語法
將所有 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);
});
沒有留言:
張貼留言