经过查询发现是ts语言造成的
是因为ts类型安全造成的,getElementById本身返回的对象不包含value,而其子类型HTMLInputElement包含,所以进行强转便可以使用value了
getElementById
HTMLInputElement
需要进行强制类型转换
var inputValue = (<HTMLInputElement>document.getElementById(elementId)).value;
原文链接:https://stackoverflow.com/questions/12989741/the-property-value-does-not-exist-on-value-of-type-htmlelement