如果指定的命名空间为默认值,则DOM isDefaultNamespace()方法用于返回布尔值true,否则,它返回布尔值false。可以使用namespaceURI字符串检查所需名称空间的URI。
用法:
node.isDefaultNamespace
返回值:如果名称空间为默认值,则返回布尔值true,否则返回false。
例:返回DefaultNamespace属性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML | DOM isDefaultNamespace() Method
</title>
</head>
<body>
<h1>
<center>
Geeks
<button onclick="space()">
Press
</button>
</center>
</h1>
<h4>
Clicking on the 'Press' button will display
if the specified namespace is default.
</h4>
<p id="demo"></p>
<script>
function space() {
// Access and return default namespace property.
var d =
document.documentElement;
var x =
d.isDefaultNamespace(
"https://ide.geeksforgeeks.org/tryit.php");
document.getElementById("demo").innerHTML =
x;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
注意:Internet Explorer8和更早版本不支持此方法。
浏览器支持:下面列出了DOM isDefaultNamespace()方法支持的浏览器:
- 谷歌浏览器
- Internet Explorer 9.0
- 火狐浏览器
- Opera
- 苹果浏览器
相关用法
- HTML DOM contains()用法及代码示例
- HTML DOM getElementById()用法及代码示例
- HTML DOM History go()用法及代码示例
- HTML DOM getElementsByClassName()用法及代码示例
- HTML DOM setNamedItem()用法及代码示例
- HTML DOM normalizeDocument()用法及代码示例
- HTML DOM fullscreenEnabled()用法及代码示例
- HTML DOM getElementsByName()用法及代码示例
- HTML DOM write()用法及代码示例
- HTML DOM importNode()用法及代码示例
- HTML DOM getNamedItem()用法及代码示例
- HTML DOM Storage key()用法及代码示例
- HTML DOM open()用法及代码示例
- HTML DOM removeAttribute()用法及代码示例
- HTML DOM addEventListener()用法及代码示例
注:本文由纯净天空筛选整理自riarawal99大神的英文原创作品 HTML | DOM isDefaultNamespace() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。