WEB 教程
实践 示例
HTML 参考手册
CSS 参考手册
PHP 参考手册

如何使用 JavaScript 获取当前 URL

主题:JavaScript / jQuery上一页|下一页

答案:使用 window.location.href 属性

您可以使用 JavaScript window.location.href 属性来获取当前页面的 entire URL,其中包括主机名、查询字符串、片段标识符等。

以下示例将在单击按钮时显示页面的当前 url。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Get Current URL in JavaScript</title>
</head>
<body>
    <script>
    function getURL() {
        alert("The URL of this page is: " + window.location.href);
    }
    </script>
     
    <button type="button" onclick="getURL();">Get Page URL</button>
</body>
</html>

请参阅 JavaScript 窗口位置 的教程,了解位置对象的其他属性。


FAQ 相关问题解答

以下是与此主题相关的更多常见问题解答:

Advertisements