firefox3.6 ie8 jQuery选择checkbox

$("input[type='checkbox'][name='resId']:checked").each(function(){ alert($(this).val()); }); 

$("input[type='checkbox'][name='resId']:checked").each(function(){ resIds = resIds + $(this).val() + ","; }); 

type 为checkbox name 为resId 状态为 选中的复选框的值

你可能感兴趣的:(jquery,function,IE,input,firefox)