警报弹出窗口未显示

时间:2017-08-24 03:11:31

标签: javascript html popup alert

我用简单的代码找不到问题。按钮显示,但是当我点击它时,警报弹出窗口不会显示。

我做错了什么?

<DOCTYPE! html>
<html>


<body>
<h1>This will be a test for Javascript</h1>
<button> onclick=“myFunction()”>I like it</button>

<script>
 function myFunction() {
     alert(“are you sure?”);
}
</script>
</body>
</html>

Screenshot

3 个答案:

答案 0 :(得分:1)

智能引号中的问题。 使用

  

<强>“

引号。

答案 1 :(得分:0)

<button onclick="ok()">Ok</button>

<script>
function ok() {
    alert("ok");
}
</script>

答案 2 :(得分:0)

  1. 在代码中使用""而不是
  2. 尝试在html&#34; button&#34;之前编写你的js代码代码。
  3. 并尝试在onclick脚本的末尾添加一个逗号。