了解此命名空间以及使用 JQuery 解析 XML 的解决方法
我一直在努力解决如何从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
想通了。这使用属性等于选择器。
Figured it out. This uses the Attribute Equals Selector.