问答详情
源自:8-1 window对象

8-1 什么窗口大小设置无效

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>window对象</title>

<script type="text/javascript">

 function openwindow(){

     window.open('https://www.baidu.com','width=600,height=400,menubar=no,toolbar=no');

 }


</script>

</head>

<body>

<form>

<input type="button" value="点击我,打开新窗口"  onclick="openwindow()" />

</form>

</body>

</html>


提问者:田马达加斯加 2018-10-12 12:48

个回答

  • 玄众妙
    2019-05-24 11:20:19

    <script type="text/javascript">

    function dj(){


        window.open("https://www.imooc.com","_blank","width=600px,height=400px").alert("欢迎来到慕课网");



    }


    </script>

    你应该把弹出的窗口进行定位_blank:在新窗口显示目标网页",_self:在当前窗口显示目标网页,_top:框架网页中在上部窗口中显示目标网页

  • 歪歪歪歪歪_
    2018-10-12 17:53:28

    因为你少了一个参数,高度宽度这代码因为少了第2个参数跑到第2的位置了

     window.open('https://www.baidu.com',,'width=600,height=400,menubar=no,toolbar=no');这样就好了