gpt4 book ai didi

javascript - 如何使用 jQuery 选择第一个父 DIV?

转载 作者:IT王子 更新时间:2023-10-29 02:44:04 26 4
gpt4 key购买 nike

var classes = $(this).attr('class').split(' '); // this gets the current element classes

var classes = $(this).parent().attr('class').split(' '); // this gets the parent classes.

上述情况的parent是ankor。

如果我想获得 $(this) 的第一个父 DIV,代码会是什么样子?

var classes = $(this).div:parent().attr('class').split(' '); // just a quick try.

* 基本上我想获取 $(this) 的第一个父 DIV 的类。

谢谢

最佳答案

使用.closest()向上遍历 DOM 树直到指定的选择器。

var classes = $(this).parent().closest('div').attr('class').split(' '); // this gets the parent classes.

关于javascript - 如何使用 jQuery 选择第一个父 DIV?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7089229/

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