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