无法读取 null 的 属性 'hasAttribute'
Cannot read property 'hasAttribute' of null
我对 Material 设计 Bootstrap 有疑问,我用 NPM
添加了它,但是当我在我的网站上时,我收到此错误:
Uncaught TypeError: Cannot read property 'hasAttribute' of null
at r (app.js:19116)
at Module.o.m.n (app.js:19116)
at o (app.js:19116)
at app.js:19116
at app.js:19116
at Object../node_modules/mdb-ui-kit/js/mdb.min.js (app.js:19116)
at __webpack_require__ (app.js:19361)
at Object../resources/js/app.js (app.js:1845)
at __webpack_require__ (app.js:19361)
at app.js:19500
问题出在哪里:hasAttribute("data-mdb-no-jquery")
。我不知道如何解决这个问题。
感谢您的回答!
能否将代码块发送到您使用此行的位置?
Cannot read property 'hasAttribute' of null
表示您在某处执行类似 myVariable.hasAttribute(...)
的操作,但 myVariable
的值为 null 或未定义,因此没有可调用的函数。
我对 Material 设计 Bootstrap 有疑问,我用 NPM
添加了它,但是当我在我的网站上时,我收到此错误:
Uncaught TypeError: Cannot read property 'hasAttribute' of null
at r (app.js:19116)
at Module.o.m.n (app.js:19116)
at o (app.js:19116)
at app.js:19116
at app.js:19116
at Object../node_modules/mdb-ui-kit/js/mdb.min.js (app.js:19116)
at __webpack_require__ (app.js:19361)
at Object../resources/js/app.js (app.js:1845)
at __webpack_require__ (app.js:19361)
at app.js:19500
问题出在哪里:hasAttribute("data-mdb-no-jquery")
。我不知道如何解决这个问题。
感谢您的回答!
能否将代码块发送到您使用此行的位置?
Cannot read property 'hasAttribute' of null
表示您在某处执行类似 myVariable.hasAttribute(...)
的操作,但 myVariable
的值为 null 或未定义,因此没有可调用的函数。