当我尝试使用TypeScript从表中删除行时,引发以下错误:


  TS2339:类型“ HTMLInputElement”上不存在属性“ deleteRow”。


let tableElement = (<HTMLInputElement><any>document.getElementById(tableId));
tableElement.deleteRow(index);

最佳答案

您有HTMLInputElement,但您的意思是HTMLTableElement

关于javascript - 无法使用Typescript从表中删除行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56297077/

10-09 22:28