當用戶選擇複選框時,需要顯示其他內容。我有下面的代碼:選中複選框時顯示/隱藏div
<!DOCTYPE html>
<html>
<head>
<title>Checkbox</title>
<script type="text/javascript">
$(document).ready(function(){
$('#checkbox1').change(function(){
if(this.checked)
$('#autoUpdate').fadeIn('slow');
else
$('#autoUpdate').fadeOut('slow');
});
});
</script>
</head>
<body>
Add another director <input type="checkbox" id="checkbox1"/>
<div id="autoUpdate" class="autoUpdate">
content
</div>
</body>
</html>
真的很感謝一些幫助,良好的HTML5,CSS3知識,但非常基本的JavaScript/jQuery。
你是否包括該網頁上的jQuery庫替換您的代碼?在示例代碼中,我看不到像'這樣的東西。 – andyb
你的問題到底是什麼? – webduvet
包括圖書館,根本不工作?當選中複選框時,內容不會隱藏 – user2890036