为了账号安全,请及时绑定邮箱和手机立即绑定

为啥不显示结果

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>定时器</title>
<script type="text/javascript">
  var attime;
  function clock(){
    var weeekday = ["星期日","星期一","星期二","星期三","星期四","星期五","星期六"]
    var time=new Date();         
    attime=time.getHours()+":"time.getMintues()+":"time.getSeconds()+weekday[time.getDay()];
    document.getElementById("clock").value = attime;
  }
setInterval(clock,1000);
</script>
</head>
<body>
<form>
<input type="text" id="clock" size="100"style="background:#000;color:#00ff00;width:200px";  />
</form>
</body>
</html>

正在回答

3 回答

定义的时候写的weeekday 下面写的weekday

getMinutes不是getMintues  = =

多用F12有奇效哦~

0 回复 有任何疑惑可以回复我~
<!DOCTYPE HTML>
<html>

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>定时器</title>
    <script type="text/javascript">
    
    window.onload = function(){
    	var attime;
    function clock() {
        var weekday = ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]
        var time = new Date();
        attime = time.getHours() + ":"+time.getMinutes() + ":"+ time.getSeconds() +"---"+ weekday[time.getDay()];
        document.getElementById("clock").value = attime;
    }
    setInterval(clock, 1000);
}
    
    </script>
</head>

<body>
    <form>
        <input type="text" id="clock" size="100" style="color:#00ff00;width:200px" ; />
    </form>
</body>

</html>

一些变量名,函数名写错了。还有就是这种东西要放在window.onload 里

0 回复 有任何疑惑可以回复我~
<script type="text/javascript">
    var attime;
    function clock(){
        //为里多写了一个e
        var weekday = ["星期日","星期一","星期二","星期三","星期四","星期五","星期六"]
        var time=new Date();
        //getMintues  应该是 getMinutes    字符串拼接两边都要有+
        attime=time.getHours()+":"+time.getMinutes()+":"+time.getSeconds()+weekday[time.getDay()];
        document.getElementById("clock").value = attime;
    }
    setInterval(clock,1000);
</script>

看注释

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
JavaScript进阶篇
  • 参与学习       468188    人
  • 解答问题       21891    个

本课程从如何插入JS代码开始,带您进入网页动态交互世界

进入课程

为啥不显示结果

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信