1

我有这个,但由于某些原因,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>
4

1 回答 1

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>
于 2013-02-17T16:26:13.597 回答