打不开网址,显示路径错误
代码如图所示
代码如图所示
2018-11-28
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>open</title>
<script type="text/javascript">
function openwind(){
var open=confirm("确认新建窗口");
if(open==true){
var url = prompt('通过输入对话框,确定打开的网址','http://www.imooc.com/');
if(url!=null){
window.open(url,'_blank',' width=400,height=500,toolbar=no,menubar=no,status=no,scrollbars=yes');
}else{
alert("66");//加双引号是字符串
}
}else{
alert("88");
}
}
</script>
</head>
<body>
<input type="button" value="打开" onClick="openwind()"/>
</body>
</html>
你的url加了单引号了
举报