jQuery - 不区分大小写的标签选择器

发布于 2024-10-02 15:47:00 字数 408 浏览 4 评论 0原文

我有一个如下所示的 XML 文档:

<Xmlpp Version="0.3"><meta><Id>123456789</Id></meta></Xmlpp>

这就是 jQuery 的行为方式:

// theDocument is a reference to the XML document
$("meta id", theDocument).size(); // Will return 0
$("meta Id", theDocument).size(); // Will return 1

Is there a way to do a case insensitive search?

I've got a XML document looking like this:

<Xmlpp Version="0.3"><meta><Id>123456789</Id></meta></Xmlpp>

And this is how jQuery behaves:

// theDocument is a reference to the XML document
$("meta id", theDocument).size(); // Will return 0
$("meta Id", theDocument).size(); // Will return 1

Is there a way to do a case insensitive search?

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

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

发布评论

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

评论(2

清秋悲枫 2024-10-09 15:47:00

或者 - 编写一个模式。使该 XML 符合您的架构。我认为保持一致比围绕不一致编写代码更容易。

Alternatively - write a schema. Make that XML to comply with your schema. I think that it's easier to be consistent rather than code around inconsistancies.

橘和柠 2024-10-09 15:47:00

假设您的 xml 与您所描述的完全一样,最简单的方法应该是

$("meta > *", theDocument).size(); 

Assuming your xml is exactly as you described, the easiest way should be

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