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);

时间: 2024-10-13 05:32:35

js创建表单并提交的相关文章

js 防止表单重复提交

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title&

js日期/时间比较函数,以及js校验表单后提交表单的三种方法,表单验证,以及三种结合

<pre class="html" name="code"> js日期比较(yyyy-mm-dd) function duibi(a, b) { var arr = a.split("-"); var starttime = new Date(arr[0], arr[1], arr[2]); var starttimes = starttime.getTime(); var arrs = b.split("-");

JS创建表单提交备份

//保存 function saveFT() { var data = { createDate: GetDateStr(0), name: $("#txtName").val(), gender: "未知", mobile: $("#txtTel").val(), email1: "[email protected]", interested:$("#C2 option:selected").text()

JQuery动态创建表单并提交

// 捕捉链接的点击事件 $('#btn').click(function(){ // 取得要提交的参数 var my_val = $.trim($('#ipt').val()); // 取得要提交页面的URL var action = $(this).attr('href'); // 创建Form var form = $('<form></form>'); // 设置属性 form.attr('action', action); form.attr('method', 'pos

JS/Jquery 表单方式提交总结

1. submit提交 (1). submit 按钮式提交 缺点:在提交前不可修改提交的form表单数据 // 1. html <form method="post" action="/../.." > <input type="text" name="username" value="" /> <input type="password" name=&qu

js阻止表单重复提交

//校验表单的数据 function newFatherModuleVerify() { var moduelName = $('#fatherModule_moduelName').val(); alert(moduelName); return false; } <form:form commandName="fatherModule" action="saveFatherModule" onsubmit="return newFatherMod

JS防止表单重复提交

html代码 <form action="booking.php" method="post" name="chkForm" id="chkForm" > 姓名:<input name="real_name" type="text" id="real_name" class="inputBg" size="20"

js form 表单的提交

$("#confirm").click(function(){    var url = "${basePath}${path}saverpGoodsbase";  $("#form_item").attr("action", url);  $("#form_item").submit();   }); }; $("#form_item").attr("action"

js验证表单并提交

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title></title> <meta http-equiv="content-type" content=