为什么这个脚本:
if ($('.applyrulles').is(':checked')) {
$('.button').show(700);
} else {
$('.button').hide();
}
不工作.button
?
<div>
<input name="applyrulles" type="checkbox" class="applyrulles"/>
</div>
<input type="submit" class="button" value="send"/>
Sript 隐藏,但在选中.button
时不显示。.applyrulles