我正在尝试用 jQuery 替换 Xpath

发布于 2024-12-08 09:22:44 字数 611 浏览 1 评论 0原文

Android 浏览器不支持 XpathEvaluator 对象。

我正在尝试用 JQuery 替换 Xpath。

例如,

01. oRoot.selectSingleNode("step/person"); 
->  $(oRoot).find("step person");

02. oRoot.selectSingleNode("step/person[@color='red' and age='20']"); 
->  $(oRoot).find("step person[color='red'][age=[20]");

但是,我不知道如何更改下面的代码?

01. oRoot.selectSingleNode("step/person[@color='red' or @color='black']");
02. oRoot.selectSingleNode("step/person[taskinfo/status='holding']");

你知道在 jQuery 代码中应用 OR 运算吗?

您知道将一种深度属性应用于 jQuery 代码吗?

或者你还有其他好的解决方案吗?

Android browser not support XpathEvaluator Object.

I'm trying to replace with Xpath with JQuery.

For example,

01. oRoot.selectSingleNode("step/person"); 
->  $(oRoot).find("step person");

02. oRoot.selectSingleNode("step/person[@color='red' and age='20']"); 
->  $(oRoot).find("step person[color='red'][age=[20]");

But, I don't know how change below code?

01. oRoot.selectSingleNode("step/person[@color='red' or @color='black']");
02. oRoot.selectSingleNode("step/person[taskinfo/status='holding']");

Do you know apply OR operation to jQuery Code?

Do you konw apply one depth attribute to jQuery Code?

or Do you have other good solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

日裸衫吸 2024-12-15 09:22:44

jquery选择器中没有条件运算符,您只需要用逗号分隔选择器即可。

$(oRoot).find('step person[color=red] , step person[color=black]');

有关 jQuery 选择器的更多信息 http://api.jquery.com/category/selectors/

您可以使用 jQuery 的 .attr() 轻松应用属性:

$('step person', oRoot).attr('foo', 'bar');

有关 jQuery attr 的更多信息:http://api.jquery.com/attr/

There aren't conditional operators in jquery selectors, you just need to separate the selectors with a comma.

$(oRoot).find('step person[color=red] , step person[color=black]');

More on jQuery selectors http://api.jquery.com/category/selectors/

You can easily apply an attribute using jQuery's .attr():

$('step person', oRoot).attr('foo', 'bar');

More on jQuery attr: http://api.jquery.com/attr/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文