NS Core中的NS后缀成员

时间:2011-09-14 08:34:17

标签: javascript dom browser

DOM核心标准位于: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网页的网络开发人员可以忽略这些成员?

1 个答案:

答案 0 :(得分:0)

在HTML5中,predefined namespacesMathML有一些SVG,...

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