美文网首页
js创建form表单提交

js创建form表单提交

作者: Aug08 | 来源:发表于2020-07-23 16:23 被阅读0次
var postForm = document.createElement("form");
        postForm.method = "post";
          postForm.action = "XXXX";
          postForm.style = "display:none";
          var idInput = document.createElement("input");
          idInput.setAttribute("name", "id"); 
          idInput.setAttribute("value",12122);  
          postForm.appendChild(idInput);
          document.body.appendChild(postForm);
          postForm.submit();

相关文章

网友评论

      本文标题:js创建form表单提交

      本文链接:https://www.haomeiwen.com/subject/mjyhlktx.html