如何使用 JavaScript 获取当前 URL
答案:使用 window.location.href
属性
您可以使用 JavaScript window.location.href
属性来获取当前页面的 entire URL
,其中包括主机名、查询字符串、片段标识符等。
以下示例将在单击按钮时显示页面的当前 url。
示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>在 JavaScript 中获取当前 URL</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 相关问题解答
以下是与此主题相关的更多常见问题解答: