我使用jquery nth-of-type
使div滑動上下(slideToggle()
和click()
)。問題是,當我嘗試一下的東西,打開的標籤之一,他們不開。jquery:nth類型動作
HTML:
<div id="tabs-wrapper">
<div class="op">Tab One</div>
<div class="op">Tab Two</div>
<div class="op">Tab Three</div>
<div class="tab">Pattern One</div>
<div class="tab">Pattern One</div>
<div class="tab">Pattern One</div>
</div>
JS:
$('.tab').hide();
$('.op:nth-of-type(1)').click(function(){
$('.tab:nth-of-type(1)').slideToggle();
});
$('.op:nth-of-type(2)').click(function(){
$('.tab:nth-of-type(2)').slideToggle();
});
$('.op:nth-of-type(3)').click(function(){
$('.tab:nth-of-type(3)').slideToggle();
});
要獲得匹配,加上'3'到每個'.TAB的:第n-的-type's即_4_,_5_,_6_(但是這需要知道你已經有了3個標籤) –