gpt4 book ai didi

javascript - 在 JavaScript 上创建 URL 提交表单

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

我目前有一个带有一些 JavaScript 函数和本地存储的表单。

我试图让用户在文本框中输入值时,搜索栏将 URL 从“mysite.com”更改为“mysite.com/%userinput%”。然后该用户可以将该链接发送给其他人,然后该人将看到原始用户所看到的内容。

最佳答案

这将在输入后更改 URL。

据我从您的问题和评论中了解到,您不想加载 URL,只需更改它,所以试试这个 fiddle :http://jsfiddle.net/GrP6U/2/show/

背后的代码是:

JavaScript

var theForm = document.getElementById('theForm');
var theInput = document.getElementById('subj');

theForm.onsubmit = function(e) {
var myurl = "http://jsfiddle.net/GrP6U/2/show/?input=" + encodeURIComponent(theInput.value);
window.history.pushState('', "Title", myurl);
return false;
}

HTML

<form id="theForm">
<input id='subj'/>
<input type='submit'/>
</form>

关于javascript - 在 JavaScript 上创建 URL 提交表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17505268/

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