我想讓div顯示和jquery和css失望。 代碼不起作用:爲什麼我不能使用jQuery隱藏點擊元素?
HTML
<html>
<head>
</head>
<body>
<div class="box" id="b1">
<a href="#">click to show content</a>
<div class="content">
here is content here is content here is content
<div class="button" id="b2">remove content</div>
</div
</body>
</html>
jQuery的
$(document).ready(function() {
$('#b1').click(function() {
$('.content').css({
"display": "block"
});
});
$('#b2').click(function() {
$('.content').css({
"display": "none"
});
});
});
演示:http://jsfiddle.net/jTgRF/41/
的類 「內容」 div標籤未正確關閉。剛纔提到,雖然它不是錯誤的原因。 – HOT