将后缀添加到操作URL

时间:2014-06-08 19:53:56

标签: php wordpress action search-form

我有这个表格

<form role="search" method="get" id="searchform" class="searchform" action="http://search.site.com/Archive/search/read" >

<div>
    <input type="text" value="" placeholder="text" name="query" id="?" />
    <input type="submit" id="searchsubmit" value="." />
</div>
</form>

我需要在网址的末尾添加此后缀:&amp; title =&amp; start_year =&amp; end_year =

例如:

http://search.site.com/Archive/search/read?query=pertini&title=&start_year=&end_year=

查询的位置是:pertini

可以在JavaScript或jQuery或PHP中使用吗?

网站仅支持GET方法。

我在WordPress工作。

1 个答案:

答案 0 :(得分:0)

只需为您需要的所有内容添加隐藏字段:

<form role="search" method="get" id="searchform" class="searchform" action="http://search.site.com/Archive/search/read">
    <div>
        <input type="text" value="" placeholder="text" name="query" id="?" /><input type="submit" id="searchsubmit" value="." />
    </div>
    <input name="title" type="hidden" value="" />
    <input name="start_year" type="hidden" value="" />
    <input name="end_year" type="hidden" value="" />
</form>