x
 
<!DOCTYPE html>
<html>
<body>
<h1>Document 对象</h1>
<h2>documentURI 属性</h2>
<p>该文档的位置是:</p>
<p id="demo"></p>
<p>Internet Explorer 11(或更早版本)不支持 documentURI 属性。</p>
<script>
let uri = document.documentURI;
document.getElementById("demo").innerHTML = uri;
</script>
</body>
</html>