问答详情
源自:2-7 编程练习

为什么我的码打开imooc是乱码?

<!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 confir=confirm("?");

if(confir==true){

    var webadd=prompt("?","http://www.imooc.com/");

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

}

  


    //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。

    }

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


其他部分都没有问题 但是打开http://www.imooc.com/是乱码

提问者:Randysolo 2018-07-17 19:19

个回答

  • 舊夢
    2018-07-18 14:21:30
    已采纳

    乱码是编码不同导致的,你把第五行的"UTF-8"改为"gbk",gbk才是java的默认编码

  • 小鲤鱼听听
    2018-07-18 14:30:27

    换个浏览器试试?我用的谷歌浏览器,没有乱码现象