我有两个直接在彼此顶部的单选按钮。每个都显示其各自的 div 并隐藏另一个收音机的 div。除了名称之外,关于它们的一切都是相同的——“#fed”有效,“#state”无效。有什么想法吗?
HTML:
<label class="radio"><input type="radio" name="jur" id="fed" /> Federal</label>
<span class="searchtype" id="feddiv"></span>
<label class="radio"><input type="radio" name="jur" id="state" /> State</label>
<span class="searchtype" id="statediv" ></span>
Javascript:
$('#state').on('click',function(event) {
$('#statediv').show();
$('#feddiv').hide();
});
$('#fed').on('click',function(event) {
$('#feddiv').show();
$('#statediv').hide();
});