gpt4 book ai didi

javascript - jQuery 通过文本查找并选择元素的父元素但不包含

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

<position><Identity>5</Identity></position>
<position><Identity>8</Identity></position>
let Identity = $(this).find("Identity").text(); //this equal 5
let wIdent = $(wBody).find("Position").children("Identity").text() == Identity;

如果我有很多名为“Position”的元素,但任何位置都有唯一的“Identity”,例如它的标识现在等于 5,我该如何选择“Position”。

我不能使用“包含”,因为我不需要选择“55”或“85”或“15”,我只需要选择“5”

最佳答案

var $pos5 = $("position").filter(function(){ 
return $(this).find("Identity").text() == "5";
});

关于javascript - jQuery 通过文本查找并选择元素的父元素但不包含,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49497851/

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