四月是你的谎言x
2017-11-08 15:02
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>window对象</title>
<script type="text/javascript">
alert("欢迎来到慕课网!")
function myFunction()
{
window.open('http://www.imooc.com','_blank','width=600, height=400')
// window.open('http://www.imooc.com','_blank','width=600 height=400')
}
</script>
</head>
<body>
<form>
<input type="button" value="点击我,打开新窗口" onclick="myFunction()" />
</form>
</body>
</html>
我刚才试了一下,在我的环境下是同样显示的,可能是不同浏览器对错误语法处理的不一样吧
嗯,谢谢
想问下'_blank'这个是什么意思?
在我电脑上效果也是一样的,你换一个浏览器试试
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题