DOM Core 中的 NS 后缀成员

发布于 2024-12-04 14:58:57 字数 802 浏览 0 评论 0原文

DOM Core 标准在这里: http://www.w3.org/TR/ DOM-Level-3-Core

该标准定义了在 Web 浏览器的 DOM 中实现的基本接口。这些接口包含 NS 后缀成员。

接口文档

  • createElementNS
  • createAttributeNS
  • getElementsByTagNameNS

  • getAttributeNS
  • setAttributeNS
  • removeAttributeNS
  • getAttributeNodeNS
  • setAttributeNodeNS
  • getElementsByTagNameNS
  • hasAttributeNS
  • setIdAttributeNS

接口元素 接口NamedNodeMap

  • getNamedItemNS
  • removeNamedItemNS

我还没有研究这么多,但似乎对我来说,这些成员纯粹是为了 XML 文档而存在的。这是正确的吗?这是否意味着创建 HTML 网页的 Web 开发人员可以忽略这些成员?

The DOM Core standard is here: http://www.w3.org/TR/DOM-Level-3-Core

This standard defines the fundamental interfaces which are implemented in the DOM of web browsers. Those interfaces among others contain NS suffixed members.

Interface Document

  • createElementNS
  • createAttributeNS
  • getElementsByTagNameNS

Interface Element

  • getAttributeNS
  • setAttributeNS
  • removeAttributeNS
  • getAttributeNodeNS
  • setAttributeNodeNS
  • getElementsByTagNameNS
  • hasAttributeNS
  • setIdAttributeNS

Interface NamedNodeMap

  • getNamedItemNS
  • removeNamedItemNS

I haven't looked into this much, but it seems to me that those members exist purely for XML documents. Is that correct? Does that mean that web-developers who create HTML web-pages can ignore those members?

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

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

发布评论

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

评论(1

少女的英雄梦 2024-12-11 14:58:57

在 HTML5 中,有一些预定义的命名空间用于MathML, SVG,...

因此,您在问题中引用的不同函数(例如 createElementNS、createAttributeNS)对于在 HTML5 内操作 SVG 很有用。

In HTML5, there are some predefined namespaces for MathML, SVG,...

So the different functions you cited in your question such as createElementNS, createAttributeNS are useful, by example, for manipulating SVG inside HTML5.

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