我的网站上有搜索表单,可以在外部网站上搜索结果。但是我想在这个链接中添加一个锚点,所以现在我有了表格:
<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”?
答案 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>