如何使用 JavaScript 检查页面的 URL
How to check the URL of a page using JavaScript
我如何制作一个脚本来检测页面的当前 URL?这是我想要它做的:
当脚本打开时 example.com 它可以让页面正常加载。
当脚本打开 coolsite.com 时,它会用显示 link 到 example.com
的注释替换页面内容
我该怎么做?是否有检测 window 位置的函数?我可以将它放在 <script>
元素或单独的 JavaScript 文件中。
感谢您的帮助!
window.location.host
它不是功能只是检查变量值
document.body.innerHTML = `<h1>This JS runs under this host :</h1> <h2>${window.location.host}</h2>`
我如何制作一个脚本来检测页面的当前 URL?这是我想要它做的:
当脚本打开时 example.com 它可以让页面正常加载。
当脚本打开 coolsite.com 时,它会用显示 link 到 example.com
的注释替换页面内容我该怎么做?是否有检测 window 位置的函数?我可以将它放在 <script>
元素或单独的 JavaScript 文件中。
感谢您的帮助!
window.location.host
它不是功能只是检查变量值
document.body.innerHTML = `<h1>This JS runs under this host :</h1> <h2>${window.location.host}</h2>`