我想在用戶單擊複選框時隱藏div,並在用戶取消選中該複選框時顯示它。 HTML:當複選框選中時,jQuery隱藏div,未選中時顯示
<div id="autoUpdate" class="autoUpdate">
content
</div>
的jQuery:
<script>
$('#checkbox1').change(function(){
if (this.checked) {
$('#autoUpdate').fadeIn('slow');
}
else {
$('#autoUpdate').fadeOut('slow');
}
});
</script>
我有一個很難得到這個工作。
這個問題可能會幫助你http://stackoverflow.com/questions/3312502/hide-text-when-checkbox-is-unchecked-using-jquery –