以下是我的HTML代码。我已尽力而为,但我无法使用此功能。提前谢谢。
<html>
<head>
<title>How many fingers?</title>
</head>
<body>
<p>Guess how many fingers I am holding up </p>
<!-- <input type="text" id="fingers"> -->
<p><input type="text" id="guess"><button id="checkGuess">Guess</button></p>
<script type="text/javascript">
document.getElementById("checkGuess").onlick = function () {
alert("hi!");
}
</script>
</body>
</html>
答案 0 :(得分:3)
看起来你有拼写错误:
这:document.getElementById("checkGuess").onlick
应该是:document.getElementById("checkGuess").onclick
缺少“c”可能会解决您的问题。