gpt4 book ai didi

javascript - 为什么 .parent() 不起作用?

转载 作者:行者123 更新时间:2023-11-28 12:47:08 24 4
gpt4 key购买 nike

<div class="apple">
<div class="abc">
<input id="go">
</div>
</div>


$("#go").click(function(){
$(this).parent('.apple').hide(); // this doesn't work.
$(this).parent().parent().hide(); //this works
});

我希望 .parent('.apple') 正常工作。

最佳答案

来自jQuery.parent() function文档:

[...] The .parents() and .parent() methods are similar, except that the latter only travels a single level up the DOM tree. [...]

换句话说,使用 jQuery.parents() 而不是 jQuery.parent()

关于javascript - 为什么 .parent() 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6481305/

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