-1

次の JavaScript コードで正しいオブジェクトを取得しているかどうかわかりません。

<form>
    What is 5 + 5?: <input type ="number" id ="num_answer;"/>
</form>
<script>
    function basic_math(){
        var num_val = document.getElementById('num_answer').value;
        if (num_val == 10) {
            document.getElementById('num_answer').style.backgroundColor = green;
        }
        else{
            document.getElementById('num_answer').style.backgroundColor = red;
        }
    }
</script>


<button type = "button" onclick ="basic_math();"> Solve! 
</button>

私が得ているエラー:

    Uncaught TypeError: Cannot read property 'value' of null 
4

3 に答える 3

1

これはJQueryを使用したソリューションです

<p> <span> What is 5 + 5? </span> 
  <input type="number" id="num_answer" />    </p>    

function basic_math()
{   
   num_val = $("#num_answer").val();
   if (num_val == 10) {
    $('#num_answer').css("color", "white");
    $('#num_answer').css("background-color", "green");
   } else {

     $('#num_answer').css("background-color", "red");

     }
}

http://jsfiddle.net/fonsecat/WMJh3/17/

于 2013-08-28T22:28:15.150 に答える