为什么我的陈述没有显示在我的输出中

时间:2017-04-19 19:17:46

标签: javascript html variables innerhtml

我正在尝试将我的innerHTML文本放入我创建的段落元素中,但它不起作用。我不明白我做错了什么。有人可以告诉我如何解决这个问题吗?

<!DOCTYPE html>
<html>
    <head>
        <title>
            JavaScript Tutorials
        </title>
        <style>
            #output {
                width: 120px;
                height: 20px;
                background-color: #CCC;
                border: 1px solid #666;
            }
        </style>
        <script>
            var apples = 25;
            var oranges = 30;

            if (apples < oranges) {
                document.getElementById("output").innerHTML = "Whats up guys";
            }
        </script>
    </head>

    <body>
        <p id="output"></p>
    </body>
</html>

0 个答案:

没有答案