javascript submit() is not a function
<script> window.onload = function(){ document.getElementById('form').submit(); } </script>
解决方法
Make sure that there is noname="submit"
orid="submit"
in the form
<script> window.onload = function(){ document.getElementById('form').submit(); } </script>
解决方法
Make sure that there is noname="submit"
orid="submit"
in the form