javaScript入门篇 2-7编程挑战 有谁做出来了(可以正确运行的)?
我的代码不知道哪里出错了,请帮我改改,谢谢了!代码如下:
2016-11-15
function openWindow()//创建函数,响应按钮点击事件 { //1点击新窗口打开网站按钮时弹出确认框(confirm) var mywin=confirm("确定打开新网页?"); if(mywin==true)//判断是否点击确认 { //2、通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/ var Wopen=prompt("请输入一个网址","http://www.imooc.com/"); if(Wopen!=null)//点击确认 { //打开宽400像素,高500像素,无菜单栏、无工具栏的窗口 window.open(Wopen,'_blank','width=400,height=500,menubar=no,toolbar=no'); } } }
<!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 isopen = confirm('确认新建窗口打开网页'); if(isopen ==true){ // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/ var input = prompt('请输入网址确认打开'); if(input != null){ //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。 window.open(input,"_blank",'width=400,height=500,menubar=no,toolbar=no'); } } } </script> </head> <body> <input type="button" value="新窗口打开网站" onclick="openWindow()" /> </body> </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function test1(){
var testif = confirm("是否打开新窗口?");
var ifsure = prompt("请输入是和否");
if(testif == true){
if(ifsure!=null){
window.open('http://www.imooc.com/',
'_blank',
'width=400,height=500,menubar=no,toolbar=no,status=no,scrollbars=yes'
);
}
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="test1()" />
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
var msg =confirm("是否打开新窗口?");
if(msg==true){
var url= prompt("请输入是和否");
if(url=="是"){
window.open('http://www.imooc.com','_blank','width=400,height=500');
}
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
举报