我有这个功能:
$("span.expandimg").click(function(){
$(this).nextAll(".toggle_container:first").slideToggle("slow");
});
这适用于:
但现在我将“expandimg”放在一个表列中,并将“toggle_container”放在另一列中.像这样的东西:
我现在如何找到“toggle_container”元素?我想点击“expandimg”来扩展“toggle_container”,但它不能用我的功能.
谢谢!
最佳答案
$("span.expandimg").click(function(){
$(this)
.closest("tr")
.find("td .toggle_container")
.slideToggle("slow");
});
原文链接:https://www.f2er.com/jquery/428564.html
猜你在找的jQuery相关文章