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

运行没结果,怎么回事?

<!DOCTYPE HTML>

<html>

<head>

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

<title>window对象</title>

<script type="text/javascript">

    function myfun{

        alert("点击我,弹出新窗口!");

        window.open("http://www.imooc.com","_break","width=600,height=400 ");

    

    }


</script>

</head>

<body>

<form>

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

</form>

</body>

</html>


正在回答

2 回答

<script type="text/javascript">

    function myfun(){

    alert("点击我,弹出新窗口!");

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

 }

</script>

</head>

<body>

<form>

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

你的程序当中第七行  myfun()缺少括号,第九行是“_blank”,并不是break.另外width和height属性,最好加上px.


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

定义函数的时候忘记写"()"了,应该是"function myfun(){"

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

举报

0/150
提交
取消
JavaScript进阶篇
  • 参与学习       468044    人
  • 解答问题       21891    个

本课程从如何插入JS代码开始,带您进入网页动态交互世界

进入课程

运行没结果,怎么回事?

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