如果未选中复选框,我试图显示一个 div,如果选中则隐藏。我有这个,但我似乎遗漏了一些东西:
HTML:
<input name="billing_check" id="billing_check" type="checkbox" class="billing_check" size="40" checked="checked"/>
<div class="registration_box01 showme">
<div class="title">
<h4>billing information - infomration associated with your credit card<br />
</h4>
</div>
</div>
Javascript:
$("input[name='billing_check']").change(function() {
(".showme").toggle($("input[name='mycheckboxes']:checked").length>0);
});
风格:
.showme{
display:none;
}