Created
March 18, 2011 09:55
-
-
Save liwh/875835 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| form 嵌套form冲突 | |
| //得到你的from | |
| var form = document.forms[ 'yourForm ']; | |
| //在这里手工指定提交给哪个ACTION | |
| form.action = 'updateAction.do '; | |
| //执行SUBMIT | |
| form.submit(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment