作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 HTML 表格转换为 KendoGrid,但在执行此操作时出现错误
$("#ReportExport").kendoGrid({
toolbar: ["excel"],
filterable: { mode: "row" },
pageSize: 25,
sortable: true,
columnMenuInit(e) {
e.container.find('li[role="menuitemcheckbox"]:nth-child(1)').remove();
e.container.find('li[role="menuitemcheckbox"]:nth-child(4)').remove();
},
columnMenu: {
filterable: false
},
reorderable: true,
resizable: true,
pageable: {
alwaysVisible: true,
pageSizes: [25, 100]
},
});
控制台会这样说未捕获的 TypeError:无法读取 N 处未定义的属性“nodeName”(kendo.all.js:7692)
最佳答案
此错误可能是由于当脚本尝试访问该元素时该元素不可用。
您可以尝试将您的代码插入 document.ready 函数以确保您的 DOM 已加载或在运行代码之前检查该元素是否可用。
关于javascript - 错误 : "cannot read property ' nodename' of undefined"While converting html Table,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58523360/
我是一名优秀的程序员,十分优秀!