请问怎么改呢 不会

来源:2-7 编程练习

糖糖很涩

2015-06-03 13:27

<!doctype html>

<html>

<head>

<meta http-equiv="Content-Type"content="text/html;charset=gbk">

<title>new document</title>

<script type="text/javascript">

function openWindow()

{

var open=confirm("确认新建窗口打开网站吗?");

if(open==true)

//新窗口打开时弹出对话框,是否打开

{

var url=prompt("通过输入对话框,确定打开的网址","http://baidu.com");

if(url!=null)

//通过输入对话框,确定打开的网址,默认为http://baidu.com、

{

window.open(url,"_blank",'width=400px,height=500px,menubar=no,toolbar=no');

}

//打开的窗口要求

else{alert("再见!");

}

else

{

alert("再见!");

}

}

</head>


<body>

<input type="button"value="新窗口打开网站"onClick="openWindow()"/>

</body>

</html>


写回答 关注

1回答

  • 笑与君歌
    2015-06-03 16:55:27
    已采纳
    JS里的大括号有问题,调用onclick拼写错误,没有大写。
    <!DOCTYPE html>
    <html>
    
    	<head>
    		<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
    		<title>new document</title>
    	</head>
    
    	<body>
    		<input type="button" name="submit" value="新窗口打开" onclick="openWindow()" />
    	</body>
    	<script type="application/javascript">
    		function openWindow() {
    				/*alert("begin");*/
    				if (confirm("确认新建窗口打开网站吗?")) { //新窗口打开时弹出对话框,是否打开
    					var url = prompt("通过输入对话框,确定打开的网址", "http://www.baidu.com");
    					if (url != null && url != "") { //通过输入对话框,确定打开的网址,默认为http://www.baidu.com
    						window.open(url, "_blank", 'width=400px,height=500px,menubar=no,toolbar=no');
    					} else {
    						alert("再见!");
    					}
    				} else {
    					alert("再见!");
    				}
    				}
    	</script>
    
    </html>


    糖糖很涩

    非常感谢!

    2015-06-04 13:24:03

    共 1 条回复 >

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739818 学习 · 9566 问题

查看课程

相似问题