欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js或jquery报错Cannot read property 'length' of undefined(Cannot read property 'rows' of null)

程序员文章站 2022-04-05 11:09:40
js报错Cannot read property 'rows' of null是什么问题引起的?有时错误为Cannot read property 'length' of undefined...

js报错Cannot read property 'rows' of null是什么问题引起的?有时错误为Cannot read property 'length' of undefined,引起这两种报错的问题都是js或者jquery没有获取到对象,对象为null或者undefined。

如此代码:

document.addEventListener("DOMContentLoaded", function(e){
    var table = document.getElementById("table"), sumVal = 0;

    for(var i =1; i < table.rows.length; i++)
    {
    sumVal = sumVal + table.rows[i].cells[6].innerHTML;
    }

    console.log(sumVal);
});

自己写的语句就是没有问题,写法也是对的,对象id或者class也是存在的,就是获取不到对象,报错误呢?实际是页面加载的顺序问题,你js脚本获取对象之前,要先加载存在对象,所以等页面加载完之后,再执行你的js操作即可获取对象,也不会报错。

比如使用:

$(function(){});

以上就是关于null或undefined报错的总结,希望对你有所帮助!

相关标签: js报错