gpt4 book ai didi

javascript - 使用 jquery 隐藏 div 但无法计算出针对正确 div 的逻辑

转载 作者:行者123 更新时间:2023-11-30 12:42:00 25 4
gpt4 key购买 nike

目前我正在尝试在 h3 标签上添加一个鼠标点击事件监听器,当这个标签被点击时它会滑动切换一个 div。

这是我的 HTML

<div class="gallery-wrapper">
<h3 class="visible-toogle"> >> Hide gallery</h3>
<div class="galleria">
<img src="../Images/spherefactor_001.png" data-title="Sphere factor image 1" data-description="Sphere factor">
<img src="../Images/spherefactor_002.png" data-title="Sphere factor image 2" data-description="Sphere factor">
<img src="../Images/spherefactor_003.png" data-title="Sphere factor image 3" data-description="Sphere factor">
</div>
</div>

这是我的javascript

    $( document ).ready(function() {
$(".visible-toogle").click(function ()
{
var result = $(this).text();
if(result == " >> Show gallery")
{
$(this).text(" >> Hide gallery");
}
else
{
$(this).text(" >> Show gallery");
}

$(this).closest(".galleria").slideToggle( "slow", function()
{

});
});
});

我做错了什么?

最佳答案

在 jQuery 中使用 next 可能对您有帮助

$(this).next("div").slideToggle("slow", function () { });

关于javascript - 使用 jquery 隐藏 div 但无法计算出针对正确 div 的逻辑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24110017/

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