1 頁 (共 1 頁)

EditGrid CheckBox Check All

發表於 : 2015-07-08 17:57:45
yehlu

代碼: 選擇全部

$("#clickAll").click(function() {
 
   if($("#clickAll").prop("checked"))
   {
     $("input[name*='web_show']").each(function() {
         $(this).prop("checked", true);
     });
   }
   else
   {
     $("input[name*='web_show']").each(function() {
         $(this).prop("checked", false);
     });           
   }
});


<input type="checkbox" id="clickAll" name="clickAll">全選</input>