<!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 openwindow=confirm("是否打开"); // 新窗口打开时弹出确认框,是否打开 if(openwindow==true) { window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no'); } else { document.write("bye"); } } </script> </head> <body> <input type="button" value="新窗口打开网站" onclick="openWindow()" /> </body> </html>
已经查明原因,刚刚才发现 ,乱码原因是meta标签 charset设置不是gbk 而是utf-8 而且content 和charset每个都有自己单独的内容 所以不用一起引号 最为主要的是 第8行末尾是个中文分号,切记所有符号都要英文
我的按源码复制过去,按钮那里的文字出现了乱码,所以可能你的编码方式不同,但是我完全抄你代码,手敲之后可以打开,不存在问题!