Document.forms []. Submit of
- 2020-03-30 01:47:14
- OfStack
Document. The forms [' exportServlet]. Submit ();
(1) document.forms: means to get all forms of the current page
(2) document.forms[0] : represents the first form to get the current page
(3) document.forms['exportServlet'] : represents the form that gets the name="exportServlet" of the current page
(4) submit() represents the submit function
(1) document.forms: means to get all forms of the current page
(2) document.forms[0] : represents the first form to get the current page
(3) document.forms['exportServlet'] : represents the form that gets the name="exportServlet" of the current page
(4) submit() represents the submit function