Giả sử: Bạn có 1 Textbox và nhiều Button xử lý khác nhau như button Add và button Cancel. Thì làm thế nào để khi nhấn button Add thì xử lý việc Add và kiểm tra các trường dữ liệu nhập, còn button Cancel thì xử lý việc Cancel
<form>
<input type="number" min="1" max="100" required />
<button type="button">Add</button>
<button type="button">Cancel</button>
</form>
Bạn hãy thay đổi Code đoạn Cancel như bên dưới để khắc phục khó khăn này
<button type="button" formnovalidate>Cancel</button>