gpt4 book ai didi

php - 将表单输入值传递给 URL

转载 作者:行者123 更新时间:2023-12-02 05:27:31 25 4
gpt4 key购买 nike

这里是 HTML 的新手。

我想创建一个搜索框,将输入的搜索词传递到 URL 字段。

这是我的输入表单:

<form name="search" action="/search/" method="post">
<input type="text" name="topic" value="">
</form>

我希望搜索词位于 URL 中的 /search/ 之后。如何做到这一点?

谢谢。

最佳答案

使用 GET 表单方法:

<form name="search" action="/search/" method="GET">
<input type="text" name="topic" value="" />
</form>

编辑:

要获取将用户发送到/search//这样的 url 的表单,您可以使用如下 javascript 函数:

function submitForm(){
var url = '/search/';
url += document.search.topic.value + '/';
// repeat the above line for any other fields you may want to add
window.location.href = url;
}

然后您可以将此函数用作提交按钮或表单的 onSubmit 上的 onClick 处理程序。

关于php - 将表单输入值传递给 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12866488/

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