currentRow.getAttribute is not a function
时间: 2024-04-21 16:27:34 浏览: 131
yanghuisanjiao.rar_杨辉三角
如果 `currentRow.getAttribute` 报错 "is not a function",这可能意味着 `currentRow` 不是一个 DOM 元素或它不具有 `getAttribute` 方法。
请确保 `currentRow` 是一个有效的 DOM 元素,并且它是从 `selectElement.closest("tr")` 表达式中正确获取的。如果 `currentRow` 不是一个 DOM 元素,你可以检查代码以确定为什无法找到正确的行元素。
另外,你可以尝试使用 `currentRow.getAttribute()` 替代 `currentRow.getAttribute("materialId")`,以确保在获取属性时没有传递无效的参数。
如果问题仍然存在,请提供更多的代码细节,以便我能够更好地帮助你解决问题。
阅读全文