请大家帮我看看,为什么提示网页无法访问,错误代码6
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script>
function open1(){
var a=confirm("是否打开");
if (a==true)
{
var b=prompt("请输入网址","http://www.imooc.com/")
if (b!=null)
{
window.open("http://www.imooc.com/",'width=400','height=500','toolbox=no','menubar=no')
}
else alert("网址不得为空!")
} else alert("什么也没有!")
}
// 新窗口打开时弹出确认框,是否打开
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="open1()" >
</body>
</html>