请问我这个代码哪里错了?

来源:2-7 编程练习

慕少8622884

2015-12-15 09:04

请问我哪里错了?

<!DOCTYPE HTML>

<html>

<head>

<title>new document</title>

  <meta http-equiv="Content-Type",content="text/html; charset=utf-8"/>

  <script type="text/javascript">

  function lai(){

      var a = confirm("Do you want to open the window?");

      if (a==true)

      {    var b = prompt("Please write the adress you want to go to!","http://www.baidu.com")j;

           if (b!=null){

               window.open('http://www.baidu.com','_blank','width=400,height=500,menubar=no,toolbar=no');

           }

           else{

               alert("Thanks for your using");

           }

      }

      else {

           alert("It is so pity to give up using me!");

      }

  }

  </script>

</head>

<body>

  <input type = "button" value = "Open new window" onclick = "lai()" />

</body>

</html>


写回答 关注

3回答

  • Jason333
    2015-12-15 09:10:13
    已采纳

    第10行 结尾处多了个j 

    慕少8622...

    非常感谢

    2015-12-15 12:31:21

    共 1 条回复 >

  • 溯璃
    2015-12-16 09:16:18

    多了个j少个}

  • Caballarii
    2015-12-15 09:10:30

    var b = prompt("Please write the adress you want to go to!","http://www.baidu.com")j;

    多了个字母j

    慕少8622...

    非常感谢

    2015-12-15 12:32:00

    共 1 条回复 >

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题