x
 
<!DOCTYPE html>
<html>
<body>
<h1>Window Document 对象</h1>
<h2>URL 属性</h2>
<p id="demo"></p>
<script>
let url = window.document.URL;
document.getElementById("demo").innerHTML = url;
</script>
</body>
</html>