返回当前页面的完整 URL返回当前页面的完整 URL<!DOCTYPE html><html><body> <h1>window.location 对象</h1> <p id="demo"></p> <script>document.getElementById("demo").innerHTML = "本页面的完整 URL 是:<br>" + window.location.href;</script> </body></html>