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.
我需要推迟单选按钮上的点击事件。第一个是选中其他单选按钮时,然后必须选中单选按钮。第二种情况是必须选中单选按钮,然后用户再次单击同一按钮。我知道如何获取选中按钮的值:
$('input[name=group1]:checked').val()
但是如何获取之前选中的按钮值呢?
您可以做的是将先前单击单选按钮值的值存储在其他字段(即隐藏字段)中,然后使用它或使用 cookie 来存储值,或者您可以将其放入全局变量中。
隐藏字段示例
<input type="hidden" value="" id="rdValue" />
当单选按钮单击时
oldclickvalue = $("#rdValue").val(); $("#rdValue").val( $('input[name=group1]:checked').val() );