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

为什么弹不出来新的网页

<!DOCTYPE HTML>

<html>

<head>

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

<title>window对象</title>

<script type="text/javascript">

    alert("欢迎来的慕课网");

    function my(){

        window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0');

    }

</script>

</head>

<body>

<form>

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

</form>

</body>

</html>


提问者:慕侠0447052 2020-04-22 01:16

个回答

  • my_赵鑫鑫
    2024-02-24 17:13:33

    去掉你width前面的单引号和后面的单引号,试试

  • weixin_慕仙1176837
    2020-09-10 10:28:37

    我的可以啊!应该是不支持那个浏览器

  • 慕侠0447052
    2020-04-22 01:19:50

    解决的   用别的编辑器就能弹出来