类型断言(Type Assertion)可以用来手动指定一个值的类型。 值 as 类型<类型>值 类型断言只能够欺骗TS编译器,无法避免运行时错误。 const aLink = document.getElementById('link') as HTMLAnchorElement