tslint:为元素var分配HTMLElement

时间:2016-08-21 21:07:02

标签: typescript tslint

TypeScript代码:

var el = document.elementFromPoint(x, y);
if (el != null) {
  el = el.parentElement;
}

tslint给出错误:

Type 'HTMLElement' is not assignable to type 'Element'.

我认为HTMLElement是Element的子类。是什么给了什么?

0 个答案:

没有答案