我的Javascript不打印任何东西

时间:2016-09-27 12:12:23

标签: javascript html

我的代码不打印任何内容。我正在尝试打印当前时间。

<script type="text/javascript">
    function print(){
        var now = new Date();
        var hours = now.gethours();
        var seconds = now.getSeconds();
        var minutes = now.getMinutes();
        document.write(hours + ":" + minutes + ":" + seconds + "<br/>");
    }
    setInterval("print()", 1000);       
</script>

2 个答案:

答案 0 :(得分:2)

只需将var hours = now.gethours();更改为var hours = now.getHours();

即可

答案 1 :(得分:1)

在测试JavaScript代码时使用:

alert("output: " + var);

或在开发者控制台中

console.log(var);

所以你可以看到输出或错误