其他分享
首页 > 其他分享> > 关于Typescript - HTMLElement上使用append / prepend函数的问题

关于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里面的方法使用

标签:otherElement,Typescript,contract,prepend,HTMLElement,preview,append
来源: https://www.cnblogs.com/24klr/p/11283639.html