我有一个网页,用网站当前的 .href 来提醒我。但是我希望在输入域名时能够将一个短变量传递到网页中,以便稍后可以在js中使用它。
例如,转到网站 localhost 输入:localhost/HelloWorld 应该提醒“ HelloWorld ”
这可能吗?
这是我的 html 代码:
<!DOCTYPE html>
<html>
<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>
繁星点点滴滴
繁华开满天机
PIPIONE
相关分类