我用简单的代码找不到问题。按钮显示,但是当我点击它时,警报弹出窗口不会显示。
我做错了什么?
<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>
答案 0 :(得分:1)
智能引号中的问题。 使用
<强>“强>
引号。
答案 1 :(得分:0)
<button onclick="ok()">Ok</button>
<script>
function ok() {
alert("ok");
}
</script>
答案 2 :(得分:0)
""
而不是“