我见过类似的例子,但不知道如何让“ not(this)
”在我的代码中工作。
基本上我需要做的是:
定位子元素,而不是点击的(this
)一个
这是我尝试过的:
jQuery(document).ready(function(){
jQuery("li").click(function(){
jQuery(this).children('.step').slideToggle("slow");
jQuery not(this).children('.step').slideUp("slow"); // any advice?...
});
});