欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js以post方式打开一个新的web页面

程序员文章站 2022-04-04 15:06:43
...
        /**
	 * 以post方式打开另一个新页面 add Hejiawang by 2016.07.07
	 */
	function postOpenWindow(URL, PARAMS) { 
		var temp_form = document.createElement("form");
		temp_form .action = URL;
		temp_form .target = "_blank";
		temp_form .method = "post";
		temp_form .style.display = "none"; 
		for (var x in PARAMS) { 
			var opt = document.createElement("textarea");
			opt.name = x;
			opt.value = PARAMS[x];
			temp_form .appendChild(opt);
		}
		document.body.appendChild(temp_form);
		temp_form .submit();
	}

 使用示例:

post('url',{aa :aa,bb:bb});

 

相关标签: js post 新页面