HTML DOM documentURI 屬性


HTML DOM documentURI 屬性

#實例

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>

<p id="demo">单击按钮来显示该文档的位置</p>
<button onclick="myFunction()">点我</button>
<script>
function myFunction(){
	var x=document.getElementById("demo");
	x.innerHTML=document.documentURI;
}
</script>
<p><strong>注意:</strong>Internet Explorer不支持documentURI属性。</p>

</body>
</html>

執行實例»

#點選"執行實例" 按鈕查看線上實例


定義與用法

documentURI 屬性可設定或傳回文件的位置。

如果文件由 DocumentImplementation 物件建立, 或如果它未定義,則傳回 null


瀏覽器支援

QQ截图20161108165429.png

除了 Internet Explorer 瀏覽器,其他瀏覽器都支援 documentURI 屬性。


語法

設定文件的documentURI:

#document.documentURI=locationURI

#返回documentURI:

document.documentURI

#技術細節

##傳回值:字串, 代表文檔的URI。 DOM 版本Core Level 3 Document Object



##