Using JavaScript to add an icon to toggle button events
P粉541565322
2023-09-05 00:08:30
<p><pre class="brush:js;toolbar:false;">function toggledDeleteAllBtn(){
if( $('.customer_checkbox:checked').length > 0){
$('#sel_button').text('Deleted all selected(' $('.customer_checkbox:checked').length ')');
}else{
$('#sel_button').text('Delete all selected');
}
}
</pre>
<pre class="brush:html;toolbar:false;"> <tr id="sid">
<th>ID</th>
<th>phone number</th>
<th>remarks</th>
<th>date</th>
<th></th>
<th><input type="checkbox" name="main-checkbox"></th>
<th><button class="btn btn-danger btn-sm" id="sel_button" name="sel_button" ><i class="glyphicon glyphicon-trash" id="trash_icon"></i>Delete all </button></th>
</tr>
</pre>
<p>请问如何将 iclass 中的图标垃圾添加到函数 <code>toggleDeleteAllBtn()</code> 中,以便无论进行什么更改,图标始终显示? (需要在<code>toggleDeleteAllBtn()</code>中进行一些修改)
谢谢!</p>
I used Mamun's answer as a reference and went back to the icons I liked. (Just realized Mamun had deleted his original answer because he was using font Awesome instead of glyphicon. Anyway, thank you so much for giving me these ideas!)