gpt4 book ai didi

jquery - 滑动切换完成后调用函数

转载 作者:行者123 更新时间:2023-12-03 22:31:25 25 4
gpt4 key购买 nike

$(document).ready(function () {
$("#newrecord tr:odd").addClass("odd");
$("#newrecord tr:not(.odd)").find("li").hide();
$("#newrecord tr:not(.odd)").hide();
$("#newrecord tr:first-child").show();

$("#newrecord tr.odd").click(function () {
$("#newrecord tr:not(.odd)").show();
$(this).next("tr").find("li").slideToggle("slow","swing");
});
});

下面首先隐藏所有偶数行,当我们点击奇数行时,它会显示偶数行,并向下滑动每行的 li 内容。当我再次单击时,我需要帮助,li 标签会根据需要向上滑动,但它也应该隐藏该行。即向上滑动后应在该行上调用隐藏函数。

最佳答案

$(document).ready(function () {
$("#newrecord tr:odd").addClass("odd");
$("#newrecord tr:not(.odd)").find("li").hide();
$("#newrecord tr:not(.odd)").hide();
$("#newrecord tr:first-child").show();

$("#newrecord tr.odd").click(function () {
$("#newrecord tr:not(.odd)").show();
$(this).next("tr").find("li").slideToggle("slow","swing", function(){
//What to do on toggle compelte...
});
});
});

关于jquery - 滑动切换完成后调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17975788/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com