gpt4 book ai didi

javascript - Jquery:在父函数中调用p元素

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

我想在下面的html中选择p元素

<div class="parent">
<p>Stg</p>
</div>

在这个 JS 中

$('.parent').hover(
function() {
$(this.p).aFunction(){
};
});

我找不到正确的选择器...

最佳答案

有几种方法可以做到这一点:

find():

$(this).find('p').func();

children():

$(this).children('p').func();

Selector in context:

$('p', this).func();

关于javascript - Jquery:在父函数中调用p元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25910697/

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