<a href="#" id="link">Link</a>
<div id="example">
Content
</div>
點擊#link
觸發.hide()
爲#example
現在我想#link
觸發.show()
爲#example
我知道這是很基本的,但我似乎無法到找到它。提前致謝。在第一功能之後。單擊新的功能在jQuery的完成
<a href="#" id="link">Link</a>
<div id="example">
Content
</div>
點擊#link
觸發.hide()
爲#example
現在我想#link
觸發.show()
爲#example
我知道這是很基本的,但我似乎無法到找到它。提前致謝。在第一功能之後。單擊新的功能在jQuery的完成
要使用toggle
$('#link').click(function() {
$('#example').toggle();
});
嘗試:
$("#link").click(function(){$("#example").toggle()});
你知道〜〜這是不行的。 –