Select All Checkbox

后端 未结 4 1057
面向向阳花
面向向阳花 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:10

    Add a class to each checkbox input.

    echo '';

    Then in javascript iterate over all input fields in the docment and check whether they have both type="checkbox" and class="yourclass". And set all of them to CHECKED!

提交回复
热议问题