搜索表单以查询外部站点+参数

时间:2016-03-23 11:55:51

标签: php html forms

我的网站上有搜索表单,可以在外部网站上搜索结果。但是我想在这个链接中添加一个锚点,所以现在我有了表格:

<form method=get action="http://externalsite.com" target="_blank">
<input type=text name=q value="">
<input type=submit value="lets go">
</form>

我的表格将转到:http://externalsite.com/?q=SEARCH_PHRASE

我想要网址:http://externalsite.com/?q=SEARCH_PHRASE#anchor 如何通过表单添加“#anchor”?

1 个答案:

答案 0 :(得分:1)

您只需将锚点添加到表单的action属性:

<form method="get" action="http://externalsite.com#anchor" target="_blank">
  <input type="text" name="q" value="">
  <input type="submit" value="lets go">
</form>