如何在 JavaScript 变量中存储、检索和处理 XML 内容?
我想在 JavaScript 中对某些 XML 内容执行正则表达式匹配。
- 我们如何将 XML 内容存储在 JavaScript 变量中?
- 从 JavaScript 变量检索 XML 内容以执行正则表达式匹配的有效方法有哪些?
- 注意:请建议适用于所有浏览器的代码片段。
桑吉斯
I would like to perform a regex match on some XML content in JavaScript.
- How do we store XML contents in a JavaScript variable?
- What are the effective ways to retrieve the XML content from a JavaScript variable to perform a regex match?
- Note: Please suggest code snippets that works in all the browsers.
Sangeeth
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于解析 XML 来说,正则表达式通常不是一个好主意。
这是使用 jQuery 的解决方案: JavaScript 中变量字符串的 XML 解析
Regex is generally a bad idea for parsing XML.
Here is a solution using jQuery : XML parsing of a variable string in JavaScript
这取决于您从哪里获取 XML。如果您通过 HTTP 获取它,那么 XMLHttpRequest 将为您创建一个 XML 对象(在 obj.responseXML 中)。如果您将标记嵌入到字符串中,那么我相信 DOMParser 得到了很好的支持(并且与Microsoft 领域的 MSXML.DOMDocument)
从 JavaScript 变量DOM 和 XPath
我希望您的意思是“对从 XML 中提取的文本执行正则表达式匹配”。正则表达式对于解析 XML 来说是一个非常糟糕的工具。
That depends on where you are getting the XML from. If you get fetching it over HTTP, then XMLHttpRequest will create an XML object for you (in
obj.responseXML
). If you are embedded the markup in a string then I believe DOMParser is fairly well supported (and pairs with MSXML.DOMDocument in Microsoft-land)DOM and XPath
I hope you mean "to perform a regex match on text extracted from the XML". Regular expressions are a very poor tool for parsing XML.