了解此命名空间以及使用 JQuery 解析 XML 的解决方法

发布于 2024-10-16 04:36:44 字数 644 浏览 2 评论 0原文

我一直在努力解决如何从 XML 文件中包含冒号的标签内部提取文本(我最初的问题是 此处)。在我的具体情况下,我正在使用 Google Picasa API 并尝试获取“gphoto:id”标签。这不起作用:

var albumId = $(this).children('gphoto:id').text();

我在此处找到了问题的答案,但我不熟悉用于解决问题的 JQuery 语法:

$('[nodeName=rs:data],data')

或者,在我的问题的上下文中:

var albumId = $(this).find('[nodeName=gphoto:id]').text();

有人可以提供对此解决方法的一些见解吗?

I've been struggling with how to pull the text from inside a tag that contains a colon in an XML file (my original question is here). In my specific case, I'm working with the Google Picasa API and trying to grab the "gphoto:id" tag. This was wasn't working:

var albumId = $(this).children('gphoto:id').text();

I found the answer to my problem here, but I'm unfamiliar with the JQuery syntax used to fix the problem:

$('[nodeName=rs:data],data')

or, in the context of my question:

var albumId = $(this).find('[nodeName=gphoto:id]').text();

Can someone provide some insight into this workaround?

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

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

发布评论

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

评论(1

如歌彻婉言 2024-10-23 04:36:44

想通了。这使用属性等于选择器

Figured it out. This uses the Attribute Equals Selector.

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