我有两个隐藏的单选按钮和一个可见的按钮。单击此按钮应切换选中的按钮。
我可以使用 if 语句来实现这一点,只需设置单选按钮 (ID) = 检查。
但是如何用最少的代码来实现呢?
更新
为了满足那些除了抱怨缺少代码之外无事可做的人。尽管如此,我不明白这会使问题变得更多constructive
。
<div class="switch">
<input id="check1" type="radio" name="search" class="rbtn-search" checked="checked" value="brand" />
<input id="check2" type="radio" name="search" class="rbtn-search" checked="" value="store" />
</div>
$('.switch').click(function(){
// Switch the radio buttons here
})