犄角旮旯的鱼
2016-06-17 17:47
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function rec(){
var message= confirm();
message =prompt()
if(message==true)
{
window.open('http://www.imooc.com','new_','weight=400,height=500,menubar=no,toolbar=no');
}
else
{
return 0;
}
} // 新窗口打开时弹出确认框,是否打开
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
function openWindow(){
var windows="http://www.imooc.com/"
var openwin=prompt("请输入你要打开的网址",windows)
// 新窗口打开时弹出确认框,是否打开
if(openwin){
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
var win=window.open(windows,"_blank","width=400, heigth=500 ,menubar=no,toolbar=no")
//win.close()
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
}
}
比对下
function openWindow(){
if(confirm("确认打开新窗口?")){
var myname = prompt("请输入你要代开的窗口的网址");
if(myname != null){
window.open("http://www.imooc.com/","_blank","width=400,height=500");
}else{
alert(1);
}
}
}
这个是我写的代码,在新打开的窗口那一块儿,我没有按照要求来写,其他的都ok
JavaScript入门篇
739817 学习 · 9566 问题
相似问题