本木源
2017-10-07 19:06
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>window.open</title>
<script type="text/javascript">
function Wopen(){
window.open('www.imooc.com','_blank','height=600,width=400,top=100,left=0' );
}
</script>
</head>
<body>
<input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >
</body>
</html>
地址少些了“http://”, 另外<input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >,input不需要关闭标签,应该删除掉“/”
你的URL写错了呢。
我试了一下,'http://www.imooc.com/',改成这个新窗口就可以显示页面了
其实我也不太确定:
这个onclick 中的 C 好像不能大写吧
函数放的位置,可以换到</body>之前,不放在头部里,试一下,我怕放在头部里会“提前加载”,导致失效,这只是一种猜测,忙着刷题,有兴趣就试一下吧!
function Wopen(){
window.open('www.imooc.com','_blank=yes','height=600px,width=400px,top=100px,left=0px' );
}
JavaScript入门篇
739817 学习 · 9566 问题
相似问题