gpt4 book ai didi

javascript - jquery - 如何检查父元素是 tbody 还是 thead?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:57:38 25 4
gpt4 key购买 nike

我需要检查父级是 tbody 还是 thead 标签。

我现在有这个,但不起作用:

item.parent("thead")[0] = "<thead>" ? console.log("yes") : console.log("no");

虽然不起作用。

任何提示我做错了什么?

谢谢!

最佳答案

认为这会起作用:

console.log(item.parent("thead").is("thead") ? "Yes" : "No");

http://jsfiddle.net/G9LJT/0/ - 没有

http://jsfiddle.net/G9LJT/1/ - 是的

...

item.parent("thead")[0] 引用您的选择器的第一个 DOM 元素。

关于javascript - jquery - 如何检查父元素是 tbody 还是 thead?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8733903/

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