我已經在我的網頁結構如下如何顯示和隱藏內部div點擊3級?
HTML:
<div style="position:relative; width:200px; height:100px; overflow:hidden;">
<div style="position:absolute;" id="innerDiv">
<table style="width:400px;height:50px;" border="1" id="innerTable">
<tr>
<td>
<div id="td1"class="monthDiv" style="white-space:nowrap;">
2000
</div>
<div id="td2" style="white-space:nowrap;">
<table>
<tr><td id="quarter1">JAN-JUN00</td><td id="quarter2">JUL-DEC00</td></tr>
</table>
</div>
</td>
<td>
<div id="w" style="white-space:nowrap;">
2001
</div>
</td>
</tr>
</table>
</div>
</div>
JAVASCRIPT:
$("#td1").click(function(){
$("#td1").hide('slow');
$("#td2").show('slow');
});
$("#td2").click(function(){
$("#td2").hide('slow');
$("#td1").show('slow');
});
$("#quarter1").click(function(){
});
$("#quarter2").click(function(){
});
所以,當我點擊'td1'(2000)
我顯示'td2'(JAN-JUN00 AND JUL-DEC00)'
,反之亦然,但我當點擊'quarter1'
時需要顯示另一個div(JAN00 FEB00 ... JUN00)
。此外,我需要找到哪個div
點擊事件被解僱,'quarter1'
或'quarter2'
顯示(JUL00 AUG00 ... DEC00)
請幫我。
小提琴嗎? –
點擊'quarter1'和'quarter2'時會發生什麼? –
@TusharGupta第1季 - JAN00 FEB00 ... JUN00和第2季 - JUL00 AUG00 ... DEC00將顯示,但是當我點擊quarter1時,由於quarter1在td2 –