html中调用的js文件错误报告,求高手解答

代码//JavaScriptDocumentwindow.onload=function(){varoUl=document.getElementById("navt")... 代码
// JavaScript Document

window.onload = function() {
var oUl = document.getElementById("navt");
var aLi = oUl.getElementsByTagName("li");
var i = 0;
for (i = 0; i < aLi.length; i++) {
aLi[i].timer = null;
aLi[i].speed = 0;
aLi[i].onmouseover = function() {
startMove(this, 250);
};
aLi[i].onmouseout = function() {
startMove2(this, 100);
};
}
};

huo'h错误的报告第五行:TypeError:oUl is null
chrome错误报告也是第五行:Uncaught TypeError: Cannot call method 'getElementsByTagName' of null
求高手解答
function startMove(obj, iTarget) {
if (obj.timer) {
clearInterval(obj.timer);
}
obj.timer = setInterval(function() {
doMove(obj, iTarget);
}, 30)
};

function doMove(obj, iTarget) {
obj.speed += 3;
if (Math.abs(iTarget - obj.offsetWidth) < 1 && Math.abs(obj.speed) < 1) {
clearInterval(obj.timer);
obj.timer = null;
}
else {
if (obj.offsetWidth + obj.speed >= iTarget) {
obj.speed *= -0.7;
obj.style.width = iTarget + "px";
}
else {
obj.style.width = obj.offsetWidth + obj.speed + "px";
}
}
};
问题过长了,发不出来
展开
 我来答
t3izhou
2012-09-14
知道答主
回答量:42
采纳率:0%
帮助的人:14.1万
展开全部
var oUl = document.getElementById("navt");
var aLi = oUl.getElementsByTagName("li");
这两句话对应的元素有吗
追问
不懂啊,我发下全文件
huibo865686
2012-09-14 · TA获得超过916个赞
知道小有建树答主
回答量:325
采纳率:80%
帮助的人:265万
展开全部
没有找到元素
追问
我也知道是找不到元素,需要的是如何修改。。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式