现在的位置: 首页 > 综合 > 正文

js的post提交

2018年08月18日 ⁄ 综合 ⁄ 共 301字 ⁄ 字号 评论关闭
/**
		 * js的post提交
		 */
		function post(URL, PARAMS) { 
			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(); 
			} 

抱歉!评论已关闭.