幕布斯6906120
2015-11-08 20:25:49
<!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?open=confirm("是否打開(kāi)新窗口")}
????//?新窗口打開(kāi)時(shí)彈出確認(rèn)框,是否打開(kāi)
????if(open==true)
????{var?open2=prompt('是否打開(kāi)慕課','http//:idcbgp.cn/')
????//?通過(guò)輸入對(duì)話(huà)框,確定打開(kāi)的網(wǎng)址,默認(rèn)為?http://idcbgp.cn/
??????if?else(open2!=null)
????//打開(kāi)的窗口要求,寬400像素,高500像素,無(wú)菜單欄、無(wú)工具欄。
????{window.open(['http//:www.baidu.com/'],'_blank','width=400px,height=500,toolbar=no')}
????}
??</script>?
?</head>?
?<body>?
??<input?type="button"?value="新窗口打開(kāi)網(wǎng)站"?onclick="openWindow()"?/>?
?</body>
</html>
2 回答
已采納

李曉健
TA貢獻(xiàn)1036條經(jīng)驗(yàn) 獲得超461個(gè)贊
<!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?open?=?confirm("是否打開(kāi)新窗口") ????????????//?新窗口打開(kāi)時(shí)彈出確認(rèn)框,是否打開(kāi) ????????????if?(open?==?true)?{ ????????????????var?open2?=?prompt('是否打開(kāi)慕課',?'http//:idcbgp.cn/'); ????????????????//?通過(guò)輸入對(duì)話(huà)框,確定打開(kāi)的網(wǎng)址,默認(rèn)為?http://idcbgp.cn/ ????????????????if?(open2?!=?null)?{ ????????????????????//打開(kāi)的窗口要求,寬400像素,高500像素,無(wú)菜單欄、無(wú)工具欄。 ????????????????????window.open('http://www.baidu.com','_blank',?'width=400px,height=500,toolbar=no') ????????????????} ????????????} ????????} ????</script> </head> <body> <input?type="button"?value="新窗口打開(kāi)網(wǎng)站"?onclick="openwindow()"/> </body> </html>
1、你的代碼結(jié)構(gòu)有問(wèn)題 ?自己對(duì)應(yīng)一下,2、網(wǎng)址應(yīng)該是 http://? 開(kāi)頭 ?不是 http//: 開(kāi)頭 ??window.open(['http//:www.baidu.com/'],'_blank','width=400px,height=500,toolbar=no') ?里面的第一個(gè)參數(shù)是字符串 ?所以沒(méi)有[] ?,第一個(gè)參數(shù)后面的,你用的是中文的,應(yīng)該是英文的。 ?3、onclick="openwindow()" 這里方法調(diào)用時(shí),注意方法名的大小寫(xiě)。

幕布斯6906120
TA貢獻(xiàn)4條經(jīng)驗(yàn) 獲得超1個(gè)贊
我對(duì)那個(gè) ? null有些不理解 ? ? ?open2!=null ? 是不是open2不等于空啊
添加回答
舉報(bào)
0/150
提交
取消