我需要仅使用html将输入内容传递给表单的url,这可能吗?
我需要做的是这样的事情:
<div>
<ul>
<li><a href="./busesFuncionando.html">Buses Funcionando</a></li>
<form action="./busPorMatricula.html?matricula=????">
<!-???? has to be substitute by the content of the input->
Inserte la matricula del autobus a buscar :
<input type="text" name="matricula"/>
<input type="submit" value="Buscar"/>
</form>
</ul>
</div>
感谢您的帮助
答案 0 :(得分:1)
如果您使用form
get
方法,则不必像这样设置action
。只需将其设置为<form action="./busPorMatricula.html">
,浏览器就会将密钥和值添加到网址中。
<form action="https://www.google.co.il/">
<input type="text" name="matricula" />
<input type="submit" value="submit" />
</form>
&#13;
注意:由于StackOverflow中的安全问题,您无法在代码段中看到结果。您可以在http://output.jsbin.com/kelocu中看到它。提交form
后,您将使用网址中的密钥和值转到google.com
。