我有这个标记我的网页之一,
<div class="radio-spoof">
<input type="radio" name="enquiry" value="General enquiry" class="radio"/>
<div class="checked"></div>
</div>
<label for="general_enquiry">General enquiry</label>
<div class="radio-spoof">
<input type="radio" name="enquiry" value="Request a brochure" class="radio" checked="true"/>
<div class="checked"></div>
</div>
<label for="request_a_brochure">Request a brochure</label>
基本上,我正在做的是试图欺骗一些收音机按钮,因此我可以拥有好看的按钮,当检查收音机时,我想显示.checked
,默认设置为设置为display:none
。我需要检查 DOMReady 上的选中单选按钮,当单击单选时,目前我有这个页面,但它似乎没有正确选择 .checked div。
if($('input[type=radio]:checked')) {
console.log("!");
$(this).parent().children('div').show();
}
我希望上面的代码选择单选按钮父项,然后查找子 div (.checked) 并显示它。我弄错了吗?`