JavaScript DOMParser node.xml 的 W3C 等效项?
我正在使用 DOMParser 来解析加载到字符串中的一些原始 xml 数据。给定一个特定的 Node 对象,我需要获取该节点以及树中该节点下的所有内容的原始 xml 数据。
例如,给定:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<elem>
<div>this is some text</div>
</elem>
</root>
...并给定一个表示
元素的节点对象,我需要获取:
"<elem>
<div>this is some text</div>
</elem>"
...作为字符串。
I'm using DOMParser
to parse some raw xml data loaded into a string. Given a particular Node
object, I need to obtain the raw xml data for that node and everything beneath it in the tree.
For example, given:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<elem>
<div>this is some text</div>
</elem>
</root>
...and given a node object representing the <elem>
element, I need to obtain:
"<elem>
<div>this is some text</div>
</elem>"
...as a string.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
W3C 提供了 DOM Level 3 加载/保存规范,但我不知道浏览器中的任何本机实现。但是,您可以使用事实上的标准组件 XMLSerializer 来获取 xml 内容。
W3C provides DOM Level 3 Load/Save spec but I am not aware of any native implementation in browsers. However, you can use de factor standard component XMLSerializer to get the xml content out.