-3
以下是我的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>
糾錯:工作* – Akash21