标签: bootstrap-4
enter image description here首先单击(选中)该复选框,然后在刷新表格后,该复选框将变为未选中状态。 但仍然在那里...
答案 0 :(得分:0)
如果您使用的是JQuery,则可以这样做。
$('button').click(function(){ //Put the id of the Refresh Button $('input[type="checkbox"]').prop('checked',false); })