-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