我想要做的是传递输入字段中输入的任何内容并打开一个 url + 输入字段中的任何内容。
<form method="post" action="http://www.kickass.to/usearch/">
<div>
<input type="text" placeholder="Search for a torrent..." name="q">
<button type="submit">Search</button>
</div>
</form>
这有效,但网址打开为http://www.kickass.to/usearch/?=WhateverWasEnteredintoField
我的目标是让它以http://www.kickass.to/usearch/WhateverWasEnteredintoField
.
我知道 PHP,但我很确定有一种方法可以在 HTML 中做到这一点