提交没有任何变量名称的表单

时间:2013-03-04 12:45:06

标签: php html forms

我需要向网址/search/提交一个表单,没有任何变量名称。因此,如果我输入“foobar”形式,它会以GET格式将表格提交给/search/foobar

我怎样才能做到这一点?据我所知,没有办法用HTML做,我将不得不使用jQuery。

1 个答案:

答案 0 :(得分:0)

<form action = "/search/" onsubmit="this.action += encodeURIComponent(this.term.value); this.term.disabled = 'disabled'">
<input type="text" name="term">
</form>