gpt4 book ai didi

javascript - 从输入的 url 到网页将数据接收到 javascript

转载 作者:行者123 更新时间:2023-11-28 03:02:30 24 4
gpt4 key购买 nike

我有一个网页,用网站当前的 .href 来提醒我。不过,我希望在输入域名时能够将一个短变量传递到网页中,以便稍后可以在 js 中使用它。

例如,访问网站 localhost,输入:localhost/HelloWorld should Alert "HelloWorld"

这可能吗?

这是我的 html 代码:

<!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>

最佳答案

只需使用 pathname 属性即可为您完成此操作。 location对象包含其中的所有主机和路径。

<script>
function getURLPath() {
alert("The URL path of this page is: " + window.location.pathname);
}
</script>

关于javascript - 从输入的 url 到网页将数据接收到 javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60854427/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com