Form. submit () cannot submit the error cause of the form and solution _ javascript tips-js tutorial

Source: Internet
Author: User
Do not set the button id to submit. Otherwise, confusion may occur. As a result, the submit () method of the form cannot submit the form and directly Add the following code:

Member registration

The form data is submitted to this page. below is js processing/* single registry submission */function formDeal () {var btnSubmit = document. getElementById ('submit '); var formId = document. getElementById ('registerform'); btnSubmit. onclick = function () {// The submit () method of the form cannot submit the form formId. submit () ;}} if the form is submitted, a message indicating if (! Empty ($ _ GET ['action']) & $ _ GET ['action'] = 'register ') {echo 'data you submitted '; exit ();}

After testing for a long time, I didn't see any prompts. I thought the code was wrong or the method was wrong. I checked carefully and confirmed that there was no error in the Results official document.

FormId. submit () cannot be submitted, so we have to change the type of btnSubmit to submit.

This. type = "submit"

I checked the information online for two reasons:

1. The form cannot contain the name = "submit" label.

2. The form cannot contain "enctype =" multipart/form-data"

After testing, these two points are ridiculous and have not solved my problem (maybe my problem environment is different)

Later, I thought the Forum friends suggested that I change the Registration button ID to a name without submit. After correction, the form is submitted normally and the prompt message appears.

Conclusion: do not set the button id to submit. Otherwise, confusion may occur. As a result, the submit () method of the form cannot submit the form. When naming an ID, it is recommended that the name be unique with the existing api to avoid unnecessary troubles.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.