javascript submit window.open 全屏页面,并post提交参数

有时候我们需要post一些参数,并要打开一个新窗体,一般是设置form 的target等于_blank。
但是客户又需要隐藏工具条,隐藏工具条JavaScript只有window.open能实现。
如果能完成上面的需求?代码如下,大家分享下:
function openWindowWithPost(url,hidevalue){
		$("#hidevalue").val(hidevalue);
		$("#hideform").attr("action",url);	
		//打开窗体,并post提交页面
		var toDay =  new Date();  
  		windowname="win"+toDay.getTime();
   window.open(url,windowname,"status=yes,toolbar=no,menubar=no,location=no");
		$("#hideform").attr("target",windowname);
		$("#hideform").submit();	
	}


重点知识点
1、form的target属性,可以设置window的name,为目标窗体
2、window.open第二个参数,是它的name。
windowname需要设置成一个不重复的id,否则再次点击只会刷新已经打开的window,而不会打开新页面。

补充:
$("#hideform")是当前页面的一个form
$("#hidevalue")是form里面的一个hide
<form action="" method="post" id="hideform" target="_blank">
		<input type="hidden" id="hidevalue" name="hidevalue"/>
	</form>

你可能感兴趣的:(JavaScript)