问答详情
源自:8-3 计时器setInterval()

函数名clock与getElementById("clock")的clock

这两个clock是“同一个”吗?因为我把函数名改了好像没有影响?

var attime;
  function co(){
    var time=new Date();         
    attime=time.getHours()+":"+time.getMinutes()+":"+time.getSeconds();
    document.getElementById("clock").value = attime;
  }
var int=setInterval(co,100);


提问者:winter3000 2016-03-19 23:53

个回答

  • yonleeqqq
    2016-03-20 08:01:30

    不是同一个 getElementById();  注意后半段 ById().   说明里面是某个标签的ID。  跟函数名无关