AJAX表单自动提交

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AJAX表单自动提交相关的知识,希望对你有一定的参考价值。

I was working on this for a new site ideal I have, though it might be useful for others. What this does it sent a AJAX POST request every time the as() function is called. Setting the form to run as() onkeyup will essentially make the form submit itself whenever updated. I play to use this as part of an auto submit save system.

You could also eave the method and action of a form blank and have it run this with an onclick on the submit button, submitting the form only when they want to but keeping them on the page.

UPDATE: demo of this working available at the URL.
  1. function as(){
  2. var input = document.getElementById('form').elements
  3. var param = 'savetype=auto';
  4. for(var i=0; i!=input.length; i++){
  5. if(input[i].type != 'submit'){
  6. param = param+'&'+input[i].name+'='+input[i].value
  7. }
  8. }
  9. var ass=new XMLHttpRequest();
  10. ass.open('POST','save.php',true);
  11. ass.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
  12. ass.setRequestHeader("Content-length", param.length);
  13. ass.setRequestHeader("Connection", "close");
  14. ass.send(param);
  15. ass.onreadystatechange = function() {
  16. if(ass.readyState == 4 && ass.status == 200) {
  17. alert('your response code goes here');
  18. }
  19. }
  20. }

以上是关于AJAX表单自动提交的主要内容,如果未能解决你的问题,请参考以下文章

防止表单自动提交ajax laravel

AJAX表单自动提交

JavaScript AJAX表单自动提交

AJAX表单自动提交TinyMCE fix

jquery submit和ajax提交表单的区别

jquerymobile怎么提交表单没有反应