水木清清清清华
2017-07-15 22:09
不知道错哪了,运行不了,,,,,有大神带带吗,我初学
<!DOCTYPE html>
<html>
<head>
<title>new document</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript">
function openWindow(){
var myfirst = confirm("确认打开新窗口?")
if(myfirst==true){
window.open('http://www.imooc.com','_blank','height=500,width=400,toolbar=no,menubar=no');
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
这是正确的, 你那个问题很多,因为我也是刚学,只知道window.open一种格式,不知道你为什么要用“[]”来分割,然后if()语句里面要用"==",最好把前面charset设置成utf-8显示才不会乱码,语句后面最好加个分号比较好看,还有你的网址“html://”你的冒号是中文字符(全角),应该是英文才对(半角),你自己对比看吧。
<!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 myfirst = confirm("确认打开新窗口?")
// 新窗口打开时弹出确认框,是否打开
if (myfirst =true)
{window.open([http://www.imooc.com/],[慕课],
// 通过输入对话框,确定打开的网址, http://www.imooc.com/
[height=500,width=400,toolbar=no,menubar=no])
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
确认对话框?我还看不出问题在哪?因为有很多细节在学习中没有,所以,,,噗!
把代码贴上来
哪里出问题了?要么描述一下要么贴张图要么给代码出来。
JavaScript入门篇
739817 学习 · 9566 问题
相似问题