Select All Checkbox

后端 未结 4 1055
面向向阳花
面向向阳花 2020-12-03 19:47

I have a webpage that returns search results in a table/form. I would like to have a select all checkbox, that would select all the checkboxes for the search results. My c

4条回答
  •  情话喂你
    2020-12-03 20:09

    You can use jquery to do this in simpler way

    $("form input:checkbox").attr('checked','true');
    

提交回复
热议问题