gpt4 book ai didi

javascript - 我如何在 jquery 中使用 this 来调用元素

转载 作者:行者123 更新时间:2023-12-02 18:57:42 25 4
gpt4 key购买 nike

我如何通过在jquery中使用它来调用元素,我正在做循环每个循环都有div有2个按钮播放和暂停我想在按下播放并显示暂停时隐藏播放

    $("#play").click(function(){

$(this).$("#play").css("display", "none");
$(this).$("#pause").css("display", "block");
});

$("#pause").click(function(){
$(this).$("#pause").css("display", "none");
$(this).$("#play").css("display", "block");

});

最佳答案

HTML:

<div>
<div>1
<button class="play">play</button>
<button class="pause">pause</button>
</div>
<div>2
<button class="play">play</button>
<button class="pause">pause</button>
</div>
<div>3
<button class="play">play</button>
<button class="pause">pause</button>
</div>
</div>

JavaScript:

$(".play").click(function(){
$(this).parent().find('.pause').show();
$(this).parent().find('.play').hide();
});

$(".pause").click(function(){
$(this).parent().find('.pause').hide();
$(this).parent().find('.play').show();
});

关于javascript - 我如何在 jquery 中使用 this 来调用元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65965941/

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