Cherryboys
2016-02-19 17:37
<!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 mymessage=confirm('确定打开新窗口吗?')
if (mymessage==true)
{
window.open('http://www.imooc.com/','width=400','height=500','menubar=no','toolbar=no')
}
else{
document.write("取消")
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
还不够完善,题目还要求通过对话框确定网址,其他的同上
直接打开了网站,这题有个输入对话框你没有写
少了'_blank',因为要打开新窗口,同时也要确定无菜单栏、无工具栏。
少了请输入网址然后默认是www.xxxxxxxxxxxxx的那一步
JavaScript入门篇
739817 学习 · 9566 问题
相似问题