刷新后,复选框应未选中

时间:2019-04-03 07:34:11

标签: bootstrap-4

enter image description here首先单击(选中)该复选框,然后在刷新表格后,该复选框将变为未选中状态。 但仍然在那里...

enter image description here

1 个答案:

答案 0 :(得分:0)

如果您使用的是JQuery,则可以这样做。

$('button').click(function(){       //Put the id of the Refresh Button

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

})