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

document.getELementById is not a function?怎么回事?

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>计时器</title>

</head>
<body>
  <form>
    <input type="text" id="clock" size="50"  />
    <input type="button" value="Start" id="start"/>
    <input type="button" value="Stop" id="stop"/>
  </form>
<script type="text/javascript">

    var attime;
    var ostart=document.getELementById('start');
    var ostop=document.getELementById('stop');
    var timer=null;
    ostart.onclick=function start(){
        clearInterval(timer);
        timer=setInterval(function(){
            var time=new Date();          
            attime=time.getHours()+":"+    time.getMinutes()+":"+ time.getSeconds();
            document.getElementById("clock").value = attime;
        },1000);
    }
 
    
</script>
</body>
</html>

正在回答

1 回答

document.getElementById('id');你的l大写了

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

慕先生0450854 提问者

非常感谢!
2016-08-02 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

document.getELementById is not a function?怎么回事?

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