Closed. This question is off-topic。它当前不接受答案。
                            
                        
                    
                
            
                    
                
                        
                            
                        
                    
                        
                            想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
                        
                        6年前关闭。
                    
                
        

我是Java的新手。

我有这些代码来显示简单的事件和时间。但是,当我运行Samsung Smart TV仿真器时,此错误一直出现。第一个是错误,第二个是我的代码
错误详情:


  未捕获的TypeError:Object#没有方法'getElementByID'


这些是我的密码

This.enableKeys();

widgetAPI.sendReadyEvent();
    var thelabels = new Array();
    thelabels[0] = "StartTime: 0.900am";
    document.getElementByID('footer').innterHTML = "StartTime: 10.00pm"
    var i = 0;
    setInterval(function(){document.getElementById('footer').innterHTML = thelabels[i];i++;        if(i > = thelabels.length) i=0;},5000);


如果有人对此有解决方案,我们将不胜感激。我是Java的新手,所以我可能看不到明显的错误。
先感谢您!

最佳答案

javascript区分大小写,您还拼错了innerHTML

document.getElementByID('footer').innterHTML = "StartTime: 10.00pm"


需要是:

document.getElementById('footer').innerHTML = "StartTime: 10.00pm";

09-28 00:30