慕数据6036223
2019-05-07 00:11
<!DOCTYPE html>
<html>
<head>
<title>练习</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript">
function openWindow(){
var pd=confirm("是否打开新窗口");
if(pd==true){
var herf = prompt("请输入你要打开的网址,默认是http://www.imooc.com","http://www.imooc.com");
if(herf!="") {
if(herf!=null){
window.open(herf,"_blank","width=400,height=500,menubar=no,toolbar=no,scrollbars=yes");
}
else
{
alert("你取消了输入");
}
}
else{
alert("输入不能为空");
}
}
else{
alert("你没有选择打开新窗口");
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
这个!是什么作用
if(herf!="") {
if(herf!=null){
如有错误望指出
JavaScript入门篇
739817 学习 · 9566 问题
相似问题