window.open()参数格式问题和打开新网址无法链接问
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
var url=prompt('打开新窗口','http://www.imooc.com/');
if(url!=null)
// 新窗口打开时弹出确认框,是否打开
{window.open(url,'-blank','width=400px,heigh=500px,menubar=no,toolbar=no')}
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
//上面是我的源代码
问题1:window.open(url,'-blank','width=400px,heigh=500px,menubar=no,toolbar=no'),这里的url要不要加引号,而且参数字符串里面不打是不是默认为0或no的?
问题2:实际也是因为这个问题才导致无法测试问题1.。。。
上面的代码打开的网站无法链接(我用360打开显示网页走丢了),把url改成'www.baidu.com'都不行