Check/Uncheck all the checkboxes in a table

后端 未结 7 2098
被撕碎了的回忆
被撕碎了的回忆 2020-12-07 23:28

I have a table with information. The first column of the table have checkboxes. I can add/delete rows with a button by checking the checkboxes. The problem I have now is how

相关标签:
7条回答
  • 2020-12-07 23:51

    All CheckBox Checked

    $("input[type=checkbox]").prop('checked', true);

    0 讨论(0)
提交回复
热议问题