The Code is as follows:
<Form name = "_ thisform" method = "Post" style = "padding-top: 5px" Action = "index. PHP "> <input type =" Submit "name =" Submit "value =" Submit "> <a href =" javascript: void (0) "onclick =" _ jumpto ('20140901 ') "> submit </a> </TD> </form> <SCRIPT type =" text/JavaScript "> function _ jumpto (pageno) {; document. _ thisform. submit () ;}</SCRIPT> many online users say that they need to use ajax to submit the request in Google's browser: $. post (); uncaught typeerror: Property 'submit 'of object # _ Jumpto
Onclick
In fact, Google does not support document. formname. note the green part of the submit () method: <input type = "Submit" name = "Submit" value = "Submit">; in fact, the name of a control is
Submit, so when using document. formname. when you submit (), Google determines that you are the document you have obtained. formname. the submit control is the submitted input box here. The solution is simple. You only need to change the name of the submit button. You cannot use submit! <Input type = "Submit" name = "tijiao" value = "Submit">