📅  最后修改于: 2023-12-03 15:31:12.058000             🧑  作者: Mango
isDefaultNamespace() 方法用于检查一个命名空间是否为默认命名空间。默认命名空间是没有指定命名空间前缀的命名空间。 这个方法返回布尔值。
nodeObject.isDefaultNamespace(namespaceURI)
参数说明:
返回值:
<!DOCTYPE html>
<html>
<body>
<p id="example">这是一个段落</p>
<script>
var x = document.getElementById("example");
if (document.defaultView.isDefaultNamespace("http://www.w3.org/1999/xhtml"))
document.write("x 是默认命名空间。");
else
document.write("x 不是默认命名空间。");
</script>
</body>
</html>
该方法兼容性良好,支持所有浏览器。
参考链接: