如何在没有javascript的情况下提交选项?

时间:2013-02-17 16:22:38

标签: html forms html5-canvas

我有这个,但由于某些原因,seller_email输入没有提交。让我知道什么是错的,我该如何解决它。当然没有javascript。

<form name="input" action="mail.php" method="post">
name: <input type="text" name="name"><br>
<select name="seller_email" form="input">
<option value='hello@example.com'>hello@example.com</option>
</select>
 Address: <input type="text" name="bank_address"><br>

<input type="submit" id="submit" value="Submit">
</form>

1 个答案:

答案 0 :(得分:0)

您在选择框中不需要form="input"。我也远离命名形式的输入,这可能是一个保留词。

<form name="myForm" action="mail.php" method="post">
 name: <input type="text" name="name"><br>
 <select name="seller_email">
  <option value='hello@example.com'>hello@example.com</option>
 </select>
 Address: <input type="text" name="bank_address"><br>
 <input type="submit" id="submit" value="Submit">
</form>