jQuery - 不区分大小写的标签选择器
我有一个如下所示的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者 - 编写一个模式。使该 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.
假设您的 xml 与您所描述的完全一样,最简单的方法应该是
Assuming your xml is exactly as you described, the easiest way should be