gpt4 book ai didi

javascript - 未捕获的类型错误 : Object # has no method 'getElementByID

转载 作者:行者123 更新时间:2023-11-28 15:50:39 25 4
gpt4 key购买 nike

我对 JavaScript 很陌生。

我有这些代码来显示简单的事件和计时。但是当我运行我的三星智能电视模拟器时,这个错误不断出现。第一个是错误,第二个是我的代码错误详细信息:

Uncaught TypeError:Object# has no method '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";

关于javascript - 未捕获的类型错误 : Object #<HTMLDocument> has no method 'getElementByID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20736733/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com