js创建表单并提交

Posted 莫大人

tags:

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

1.脚本

	Util = {
			post : function(URL, PARAMS){ //虚拟表单实现post提交
				var temp = document.createElement("form");        
			    temp.action = URL;        
			    temp.method = "post";        
			    temp.style.display = "none";        
			    for (var x in PARAMS) {        
			        var opt = document.createElement("textarea");        
			        opt.name = x;        
			        opt.value = PARAMS[x];        
			        temp.appendChild(opt);        
			    }        
			    document.body.appendChild(temp);        
			    temp.submit();        
			    return temp;   
			}
	};

  

2.调用

Util.post(‘${rc.contextPath}/eacCoreOuterAccounting/exportData‘, queryCond);

 

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

为 Laravel 集体表单创建手动提交按钮

动态创建并提交表单

提交到 ASP.NET 页面的 PDF 表单创建返回 HTML 文件

js代码循环提交多个请求?麻烦帮忙改成完整代码

JS创建文件并上传服务器

ajaxFileUpload上传带参数文件及JS验证文件大小