为了账号安全,请及时绑定邮箱和手机立即绑定

给个居中打开新窗口的例子

function Wopen(){

      var newHeight = 400;

      var newWidth = 600;

      var height = (window.screen.height-newHeight)/2;

      var width = (window.screen.width-newWidth)/2;

      window.open('http://www.imooc.com','_blank','width='+newWidth+',height='+newHeight+',top='+height+',left='+width+',menubar=no,toolbar=no, status=no,scrollbars=yes');


  } 


正在回答

1 回答

<script>

var answer  = confirm("是否要打开新窗口?");

var newHeight = window.screen.height/2;

var newWidth = window.scree.width/2;

if(answer){

 window.open("http://www.imooc.com","_blank","width=newWidth,height=newHeight");

}

</script>

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
JavaScript入门篇
  • 参与学习       739817    人
  • 解答问题       9566    个

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

进入课程

给个居中打开新窗口的例子

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信