Hello World alert不会弹出

时间:2015-06-10 23:58:17

标签: javascript

第一个html代码和我的hello world alert不会弹出。我的浏览器启用了javascript并且不会阻止弹出窗口。 有人可以帮忙吗?另外我应该说我在法语键盘上打字......非常感谢;)

这就是我所拥有的:

<html>
   <head>
      <title>My first page</title>
      <script type=“text/javascript”>
         alert(“Hello world!”);
      </script>
   </head>
   <body>
   </body>
</html>

1 个答案:

答案 0 :(得分:1)

您遇到“”

的问题

试试这个

alert("Hello world!");

而不是

alert(“Hello world!”);