JavaScript DOMParser node.xml 的 W3C 等效项?

发布于 2024-12-04 19:34:25 字数 484 浏览 0 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

花海 2024-12-11 19:34:25

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.

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