gpt4 book ai didi

javascript - 如何从 get 中删除这个 ?url=

转载 作者:行者123 更新时间:2023-12-01 02:11:17 26 4
gpt4 key购买 nike

当我点击提交单词时,链接出现错误

<form id="searchf" target="_blank" method="get" action="http://www.example.com/aa/bb/#/">
<input type="text" placeholder="free" name="url">
<input type="submit" value="send" />
</form>

enter image description here

结果: http://www.example.com/aa/bb/?url=free#/

我想要这样的: http://www.example.com/aa/bb/#/free/

最佳答案

您可以使用window.location.replace进行重定向。喜欢:

$('#searchf').submit(function(e){
e.preventDefault();
window.location.replace( $(this).attr('action') + $('[name="url"]').val() );
});

这是一个 fiddle :

$(function() {
$('#searchf').submit(function(e){
e.preventDefault();
window.location.replace( $(this).attr('action') + $('[name="url"]').val() );
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<form id="searchf" target="_blank" method="get" action="http://www.example.com/aa/bb/#/">
<input type="text" placeholder="free" name="url">
<input type="submit" value="send" />
</form>

关于javascript - 如何从 get 中删除这个 ?url=,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49752765/

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