为什么弹窗不会改变大小而且网页不会进行跳转?
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>window对象</title>
<script type="text/javascript">
function dakai(){
window.alert("欢迎来到木光科技有限公司")
window.open('https//www.baidu.com','百度','width= 600px,height=400')
}
</script>
</head>
<body>
<form>
<input type="button" value="点击我,打开新窗口" onclick="dakai()" />
</form>
</body>
</html>