Supongamos que crea un asistente en un formulario HTML. Un botón retrocede y el otro avanza. Como el botón Atrás aparece primero en el marcado cuando presiona Enter, usará ese botón para enviar el formulario.
Ejemplo:
<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>
Me gustaría decidir qué botón se utiliza para enviar el formulario cuando un usuario presiona Enter. De esa manera, cuando presiona Enterel asistente se moverá a la página siguiente, no a la anterior. ¿Tienes que usar tabindex
para hacer esto?