我目前有两个按钮,当单击其中一个时,我希望将两者都禁用。
目前我正在使用:
<button type="button" class="disapprove-button" id="123abc" onclick="this.disabled=true;">
<img src="/downvote.png" alt="Downvote" /></button>
单击时禁用按钮,但这允许另一个按钮保持活动状态。
另一个是几乎完全相同的代码,但功能不同:
<button type="button" class="approve-button" id="123abc" onclick="this.disabled=true;">
<img src="/upvote.png" alt="Upvote" /></button>
我知道他们用 javascript/jquery 做到这一点的方法,但我对这两个不是很熟悉。