我的代码不打印任何内容。我正在尝试打印当前时间。
<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>
答案 0 :(得分:2)
只需将var hours = now.gethours();
更改为var hours = now.getHours();
答案 1 :(得分:1)
在测试JavaScript代码时使用:
alert("output: " + var);
或在开发者控制台中
console.log(var);
所以你可以看到输出或错误