Node.isDefaultNamespace() - Web APIs 编辑
The Node.isDefaultNamespace()
method accepts a namespace URI as an argument and returns a Boolean
with a value of true
if the namespace is the default namespace on the given node or false
if not.
Syntax
result = node.isDefaultNamespace(namespaceURI);
Parameters
namespaceURI
is a string representing the namespace against which the element will be checked.
Return value
result
is a Boolean
that holds the return value true
or false
.
Example
var XULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
var el = document.getElementsByTagNameNS(XULNS, 'textbox')[0];
alert(el.isDefaultNamespace(XULNS)); // true
Specifications
Specification | Status | Comment |
---|---|---|
DOM The definition of 'Node: isDefaultNamespace' in that specification. | Living Standard |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论