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.