DOM Core 中的 NS 后缀成员
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 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.