gpt4 book ai didi

Jquery css 到父元素(向上 2 级)

转载 作者:太空宇宙 更新时间:2023-11-03 21:44:19 24 4
gpt4 key购买 nike

我不知道为什么这不起作用...

jQuery(document).ready(function($){
$('.showLink').on('click', function(){
$(this).parents('.showContainer').css('top', '-2000px');
});
}):

布局是:

<section id="overlay" class="showContainer">
<div>
<video></video>
<div></div>
<div id="show">
<a href="#" class="showLink"><i class="fa fa-arrow"></i></a>
</div>
</div>
</section>

您可以 see it live如果您有兴趣,可以进行一些调试。

最佳答案

您可以使用 .closest() 在您的上下文中,而不是使用 .parents() ,即使两者都可以完成这项工作。

jQuery(document).ready(function($){
$('.showLink').on('click', function(){
$(this).closest('.showContainer').css('top', '-2000px');
});
}): ---> remove the colon over here and replace it with ;

关于Jquery css 到父元素(向上 2 级),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21496109/

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