2016-06-29 27 views
-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> 
+0

訂正:作業* – Akash21

答えて

3

あなたはスペルミスを持っているように見えます:

この:document.getElementById("checkGuess").onlick

は次のようになります。document.getElementById("checkGuess").onclick

不足している "c" はあなたの問題を解決する可能性があります。

+0

ありがとうございます! – Akash21

関連する問題