我有一个变量存储了 3 个 div。
每个 div 都有一个 Tille 元素。单击标题元素时,我需要制作手风琴功能,可以吗..?
我试过这样,但没有工作:
var sectors = $('#parent').find('div > div') //it returs the length 3
var title = $('#parent').find('h3') // as well it returns 3.
function//
$(title).click(function(){
$(sectors).slideToggle();//it's working... i am hiding all
$(sectors,':first').slideToggle();//it's not working... i need to show the sibling elment
})
有没有什么办法解决这一问题?而不是遍历dom,我只是使用变量来做。