问答详情
源自: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">

function op(){

    var a = confirm("欢迎━(*`∀´*)ノ来到慕课网,点击【确定】一起嗨!");

    if(a == true){

        window.open('https://www.imooc.com','_blank','width=600px,height=400px');

    }

    else{

        return;

    }

}


</script>

</head>

<body>

<form>

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

</form>

</body>

</html>


提问者:万事屋创意 2019-12-08 14:33

个回答

  • qq_最美的年华_avSZ58
    2019-12-10 20:39:23
    已采纳

    把你代码复制下来的,我都可以打开,你应该是浏览器问题。


  • 幕布斯7312073
    2019-12-08 18:52:35

    换个浏览器试试?