gpt4 book ai didi

javascript - 从 URL 获取哈希值?

转载 作者:行者123 更新时间:2023-11-28 13:54:09 29 4
gpt4 key购买 nike

我想要它,以便如果有人访问:

http://www.site.com/#hash

它将哈希后的数据放入id为url的输入框中

然后提交表单。

这是我的代码:

<form method="post">
<input id="url" placeholder="Enter" name="url">
<input type="submit" id="visit" value="Visit" class="submit">
</form>

我该怎么做?

最佳答案

你可以使用

    if( window.location.hash) {
var hashVal = window.location.hash.substring(1);
$("#url").val(hashVal );
} else {
alert("no hash found");
}

关于javascript - 从 URL 获取哈希值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9043067/

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