我有一个简单的表格,下面是代码
<form action="search.html" method="get" accept-charset="utf-8" id="search-within-form"">
<input type="hidden" name="within" id="within" value="">
<input type="text" name="q" value="" id="search-within" autocomplete="off" class="search-within-results inactive" title="">
<input type="submit"/>
</form>
我在字段中输入测试数据进行搜索,然后单击提交,在我看到的 URL 中是
/search.html?within=&q=test+data+for+search
但我需要 url 像 tis
/search.html?within=&q=用于搜索的测试数据
我知道这可以通过使用 java 脚本表单提交等来完成。我想知道有什么方法可以使用 html 来实现吗?
提前致谢。