如何只用html获取输入元素的内容?

时间:2015-12-30 01:43:02

标签: html forms

我需要仅使用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>

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

如果您使用form get方法,则不必像这样设置action。只需将其设置为<form action="./busPorMatricula.html">,浏览器就会将密钥和值添加到网址中。

&#13;
&#13;
<form action="https://www.google.co.il/">
  <input type="text" name="matricula" />
  <input type="submit" value="submit" />
</form>
&#13;
&#13;
&#13;

注意:由于StackOverflow中的安全问题,您无法在代码段中看到结果。您可以在http://output.jsbin.com/kelocu中看到它。提交form后,您将使用网址中的密钥和值转到google.com