5

Differences between requestSubmit() and submit() in HTML forms

 2 years ago
source link: http://www.js-craft.io/blog/differences-between-requestsubmit-and-submit-in-html-forms/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

Differences between requestSubmit() and submit() in HTML forms

The most used way to programmatically submit an HTML form with Javascript is the submit method:

<form>   
  <input required name="email" id="email" type="email" placeholder="Email here ...">
  <input type="submit" class="submit-btn" value="Use submit()" />
</form>
const form = document.forms[0]
document.querySelector('.submit-btn')
  .addEventListener('click', () => form.submit()
    form.submit())

However, it has (at least) 2 unexpected behaviors:

  1. submit will bypass the validation of the form. This means that the above form will be subbitment even if we have the required attribute set on the email input and that input is empty.
    // submit() will not take into account the required attr
    <input required name="email" id="email" type="email" >
  2. if we a add addEventListener('submit') to the form submit will also bypass it. For example:
    form.addEventListener('submit', e => {
    // this code will not be called when using submit()
    e.preventDefault()
    alert('Code after preventDefault called')
    })

Now with a full browser support, requestSubmit method aims to provide an more predictable behaivour to our form submisons. The requestSubmit() will take into account both the native form validation and it alows interceptions with addEventListener('submit').

form.addEventListener('submit', e => {
  // this will be called only 
  // when using requestSubmit()
  e.preventDefault()
  alert('Code after preventDefault called')
})

document.querySelector('.submit-btn')
  .addEventListener('click', () => form.submit()
    form.submit())

// requestSubmit() will first check for form validation
document.querySelector('.requestSubmit-btn')
  .addEventListener('click', () => form.requestSubmit())

Checkout a working codepen here.

I hope you have enjoyed this article and if you would like to get more articles about React and frontend development you can always sign up for my email list.

Newsletter subscribe:


Recommend

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK