Uncaught TypeError: Cannot read property 'className' of undefined

后端 未结 7 1703
春和景丽
春和景丽 2020-12-31 00:14

The following error is being thrown in Google Chrome\'s developers tools:

Uncaught TypeError: Cannot read property \'className\' of undefined

7条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-31 00:23

    Encountered similar problem. Root case was that while dataTable was about to take control of the table, our code also tried to manipulate properties of the table a the same time. The error message does not say so, however, once the table was left to be managed solely by dataTable, the problem was gone.

提交回复
热议问题