我有下面的HTML代碼的某些部分。如何編寫jQuery函數來顯示和隱藏窗體
<input type="button" id="B1" onclick="return false;" value="Show" />
<input type="button" id="B2" onclick="return false;" value="Show" />
<input type="button" id="B3" onclick="return false;" value="Show" />
<input type="button" id="B4" onclick="return false;" value="Show" />
<p id="P1">This is a paragraph with little content.</p>
<p id="P2">This is another small paragraph.</p>
<p id="P3">This is a paragraph with little content.</p>
<p id="P4">This is another small paragraph.</p>
我想要一個jQUERY函數來執行下面的操作。 如果我點擊B1按鈕,它應該顯示P1文本,並且B1按鈕文本應該更改爲隱藏,下次我點擊B1按鈕時,它應該隱藏P1文本並更改B1按鈕文本以顯示。 B2 P1,B3 P3,B4 P4也一樣。
我需要改變我的意思是如何調用該函數 – user3202862 2014-09-05 12:12:41
你只需要包括jQuery庫和HTML的標題部分上面放裏面的代碼''。 – 2014-09-05 12:22:53
見[此](http://www.w3schools.com/jquery/tryit.asp?filename=tryjquery_hide),在代碼段jquery.min.js包括和的document.ready是內部的腳本。按照相同的。 – 2014-09-05 12:27:38