我有一个form
和两个提交按钮(例如问题Two submit buttons in one form):
<form action="/doit" method="post">
<input name="commonfield1" />
<input name="commonfield2" />
<input type="submit" name="action1" value="Do something" />
<input type="file" name="file" onchange="this.form.submit()" />
<input type="submit" name="action2" value="Do something else" />
</form>
进行onchange="this.form.submit()"
时,使用哪个提交?如何选择我们使用action1
还是action2
提交?
注意:为什么没有两个单独的form
?因为commonfield1
和commonfield2
输入应该是两者共同的。