JavaScript 参考手册
HTML DOM baseURI 属性
获取文档的基础URI
源代码:
点击运行 »
<p id="demo">单击按钮显示基础URL</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { var x = document.getElementById("demo"); x.innerHTML = document.baseURI; } </script> <p><strong>注意:</strong> Internet Explorer不支持基础URI属性。</p>
运行结果:
点击运行 »