假设您在HTML表单中创建了一个向导。一个按钮后退,一个按钮前进。由于当你按下输入时,回来按钮首先出现在标记中,它将使用该按钮提交表单。
例子:
<form>
<!-- Put your cursor in this field and press Enter -->
<input type="text" name="field1" />
<!-- This is the button that will submit -->
<input type="submit" name="prev" value="Previous Page" />
<!-- But this is the button that I WANT to submit -->
<input type="submit" name="next" value="Next Page" />
</form>
当用户按输入时,我想确定哪个按钮用于提交表单。这样,当你按输入时,向导将移动到下一页,而不是上一页。你必须使用tabindex
来做到这一点吗?