Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 2 个单选按钮,在onClick()这些按钮的事件中,会显示一个预览窗格,其中显示某些记录,记录数会发生变化。如果我连续单击同一个单选按钮,我想停止数字的连续增加或减少。
onClick()
我正在使用 Java 和 Javascript。
不知何故,您还必须在服务器端执行此操作,因为如果您重新加载页面,事情将被重置。
在客户端,您可以使用 jQuery One() 函数来执行此操作。看到这个
我没有在javascript中尝试过
您可以使用 onlcick 一键禁用单选按钮。例如,
<input type="radio" name="r" id="r" onclick="javascript:this.form.r.disabled=1;this.form.submit(); ">