HTML DOM namespaceURI 属性 | DOM 对象:HTML DOM 元素对象

返回到:DOM 对象:HTML DOM 元素对象

定义和用法

namespaceURI 属性为被选节点返回命名空间的 URI。

注意:元素节点继承父节点的命名空间,因此,XHTML文档中的所有元素命名空间URI为 “http://www.w3.org/1999/xhtml”。

所有主要浏览器都支持 namespaceURI 属性

注意: Internet Explorer 8 及更早IE版本不支持该属性。

语法

node.namespaceURI

技术细节

返回值:字符串, 表示节点命名空间的URI。
DOM 版本Core Level 2 Node Object

实例

返回 XHTML 文档命名空间的 URI:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<meta charset="utf-8">
<title>Web176教程网(web176.com)</title>
</head>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<body>
	
<p id="demo">单击按钮获得文档的名称空间的URI</p>
<button onclick="myFunction()">点我</button>
<script>
function myFunction(){
	var x=document.getElementById("demo");  
	x.innerHTML=document.documentElement.namespaceURI;
}
</script>
<p><strong>注意:</strong> Internet Explorer 8 及之前版本不支持namespaceURI属性。</p>

</body>
</html>

作者:terry,如若转载,请注明出处:https://www.web176.com/javascriptbook/domtips/4447.html

(0)
打赏 支付宝 支付宝 微信 微信
terryterry
上一篇 2021年12月10日
下一篇 2021年12月10日

相关推荐

发表回复

登录后才能评论