欸_好麻烦
2016-07-04 09:01
<!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 popup1=confirm("是否确认打开?")
if(popup1==true){
var popup2=prompt("输入您要进入的网站:","http://www.imooc.com");
if(popup2!=null){
window.open(popup2,'_blank','width=400,height=500,menubar=no,toolbar=no');
}else{alert("再见2");}
}else{alert("再见1");}
}
// 新窗口打开时弹出确认框,是否打开
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
有用的,前面额http://不要忘记哦
http://要用英文的,慕课左边给的那个是中文的,我当时直接复制来用了,也把我坑了
你的http处输入错误了,要全英文状态下,应该是http://www.imooc.com
JavaScript入门篇
739817 学习 · 9566 问题
相似问题