我只想要一个简单的表单,将用户发送到具有表单附加值的地址。与输入名称“epost”中的http://example.com(value类似
没有任何脚本等可以做到这一点吗?
<form method="get" action="http://google.com">
E-post:<br>
<input type="text" name="epost">
<p>
Organisation
<select name="organisation">
<option value="1">org 1</option>
<option value="2">org 2 Korset</option>
</p>
</br>
<input type="submit" value="Done">
</form>
答案 0 :(得分:0)
您可以使用GET在网址中发送参数:
<form action="http://www.google.com/search" target='_blank'>
Key word:
<input type='text' name='q' value='Rob' />
<input type='submit' />
</form>
&#13;
<a href="http://www.google.com/search?q=Rob" target='_blank'>Search for Rob</a>
&#13;