我有几个按钮。当用户单击任何按钮时,我想给他一个按钮被单击的印象。
这是代码:
<table>
<thead>
<tr>
<th><button class="btn btn-danger" >Today</button></th>
<th><button class="btn btn-danger" >Tomorrow</button></th>
<th><button class="btn btn-danger" >DayAfterTomorrow</button></th>
</tr>
</thead>
</table>
这在我有一个按钮时有效:
<button class="btn" data-toggle="button">Today</button>
如果用户单击明天,则 data-toggle 属性仍然保留为今天按钮。相反,我想在单击另一个按钮时禁用 data-toggle 属性。