在JS中模拟表单的post提交,进行页面的跳转

Posted lchenglong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在JS中模拟表单的post提交,进行页面的跳转相关的知识,希望对你有一定的参考价值。

原文链接:https://blog.csdn.net/jal517486222/article/details/83147761

 

 /*
*功能: 模拟form表单的提交
*参数: URL 跳转地址 PARAMTERS 参数
*/
     function Post(URL, PARAMTERS) 
         //创建form表单
         var temp_form = document.createElement("form");
         temp_form.action = URL;
         //如需打开新窗口,form的target属性要设置为‘_blank‘
         temp_form.target = "_self";
         temp_form.method = "post";
         temp_form.style.display = "none";
         //添加参数
         for (var item in PARAMTERS) 
             var opt = document.createElement("textarea");
             opt.name = item;
             opt.value = PARAMTERS[item];
             temp_form.appendChild(opt);
         
         document.body.appendChild(temp_form);
         //提交数据
         temp_form.submit();
     

 

以上是关于在JS中模拟表单的post提交,进行页面的跳转的主要内容,如果未能解决你的问题,请参考以下文章

php curl 模拟post表单向提交数据

js模拟form表单提交数据, js模拟a标签点击跳转,避开使用window.open引起来的浏览器阻止问题

C# 模拟 post提交php页面的表单

使用ajax方法实现form表单的提交

PHP 表单用post传值不了 跳转出现空白页。。

为啥使用了form表单之后页面会跳转,并且页面一片空白