为了简单起见,假设我有一个3字段HTML表单,在用户完成表单并提交后,它会构建一个特殊链接并将浏览器发送给它。
Field A (Text-input) = 1
Field B (Drop-down) = 2
Field C (Text-input) = Apples
用户提交,将用户带到:
myurl.com/?a=1&b=2&c='apples'
答案 0 :(得分:1)
<form method="get" action="myurl.com">
<intput type="text" name="a"/>
<input type="text" name="b" />
<input type="text" name="c" />
<input type="submit" />
</form>
答案 1 :(得分:1)
action
和method
属性。
<form action="YOUR_URL" method="get">
<input type="text" id="a" name="a" />
<select id="b" name="b"><option value="2">2</option></select>
<input type="text" id="c" name="c" />
<input type="submit" />
</form>