Blazor preventDefault on submit form
问题 Inside my EditForm , I want to prevent that the user submits the form by pressing the Enter key. I have tried the following, but didn't work. <button type="submit" @onkeypress:preventDefault>Save</button> Many thanks! 回答1: I have got this working by just putting 2 submit button's in the EditForm , with the first one disabled. <button type="submit" disabled style="display: none" aria-hidden="true"></button> <button type="submit">Save</button> 回答2: Here's a working code sample, run it and see