onOpenHomePage:function(url){  //此处替换为要全屏观看的页面
     var  newwin=window.open("","", "status=yes,resizable=yes,location=yes,menubar=yes");// locationbar=no,newwin=window.open("","","resizable=yes,scrollbars=yes,noscrollbars") ;// 使窗口无滚动条
      if ( newwin )    //弹出成功
      {
            if (document.all)  //如果是IE
          {
           newwin.moveTo(0,0)// 新窗口左上角定位(负数默认为0)
           newwin.resizeTo(screen.width,screen.height)
          } 
           newwin.location=url ;
             opener=null;
                self.close();
      }
      else             //未弹出来
      {
         window.location.href = url;
      }
        }  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-01-06
  • 2021-09-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-22
猜你喜欢
  • 2022-12-23
  • 2021-07-31
  • 2022-12-23
  • 2021-12-10
  • 2021-09-13
  • 2021-05-30
  • 2021-09-05
相关资源
相似解决方案