页面跳转相关方法

第一种方式:

父页面

js 部分

var screenParam = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,top=0,left="+0+",height="+screen.availHeight+",width="+screen.availWidth;

var url = "http://"+window.location.host+"/Basis/apps/templates/Wfrm_test.html";

var win = window.open(url, "_blank", screenParam);

win.resizeTo(screen.availWidth, screen.availHeight);

html 部分

<form target="_blank"></form>

子页面

// 关闭上一级的页面

function closeWindow(){

  if(window.opener){

    try{

      window.opener.open("","_self");

      window.opener.opener = null;

      window.opener.close();

    }catch(e){}

  }

}

猜你喜欢

转载自www.cnblogs.com/7q4w1e/p/9894515.html
今日推荐