关于Typescript - HTMLElement上使用append / prepend函数的问题
Posted 24klr
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于Typescript - HTMLElement上使用append / prepend函数的问题相关的知识,希望对你有一定的参考价值。
因最近在做浏览器打印界面水印的问题,用到后台动态创建标签,样式的处理用到了append,prend函数,Angular build打包的时候却抛出了异常↓
ERROR in src/app/routes/contract-manage/componets/contract-preview/contract-preview.component.ts(304,28): error TS2339: Property ‘prepend‘ does not exist on type ‘htmlElement‘.
不存在prepend属性,经过几番周折,终于在stackoverflow上看到了大神们的解决办法
为了正常使用它我们可以 (<any>myElement).append(otherElement) 或者 (myElement as any).append(otherElement)方式使用
当然也可以参考https://developer.mozilla.org/en-US/docs/Web/API/Node/appendChild里面的方法使用
以上是关于关于Typescript - HTMLElement上使用append / prepend函数的问题的主要内容,如果未能解决你的问题,请参考以下文章
关于用 Angular 和 typescript 链接 $q 承诺的困惑