怎么完善这个代码?
下面的这个
if(mymsg2!=null){
....
}
这个判断条件怎么完善?如果输入框输入的不是正确的网址肯定是打不开的 但是肯定不是null,所以怎么完善一下?哪位兄台能指点一下?
2017-01-13
<!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 mymsg= confirm("是否打开新网页?");
if(mymsg==true){
var mymsg2 = prompt("请输出一个网址","http://www.imooc.com/");
var wz="http://www.imooc.com/";
if (mymsg2==wz){
window.open(mymsg2,"_blank","width:400px,height:500px")
}
else{
var a=confirm('这个网页不是慕课网,你确定要打开么?')
if (a==true){
window.open(mymsg2,"_blank","width:400px,height:500px")
}
}
}
else{
alert("欢迎下次打开");
}
}
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
<!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 mymsg= confirm("是否打开新网页?");
if(mymsg==true){
var mymsg2 = prompt("请输出一个网址","http://www.imooc.com/");
var wz="http://www.imooc.com/";
if (mymsg2==wz){
window.open(mymsg2,"_blank","width:400px,height:500px")
}
else{
alert ("那好吧,不打开就不打开!");
}
}
else{
alert("欢迎下次打开");
}
}
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
举报