Property ‘contentWindow‘ does not exist on type HTMLElement,类型htmlelement上不存在contentwindow属性

123

一、问题

Property 'contentWindow' does not exist on type HTMLElement

二、解决方法

 /**
  *  Property 'contentWindow' does not exist on type HTMLElement - 出现这个问题的处理方法;
  *  start
  */

    const isIFrame = (input: HTMLElement | null): input is HTMLIFrameElement =>
     input !== null && input.tagName === 'IFRAME';

     /**
      *  iframs: 获取document里的所有iframe标签;
      *  iframe: 获取你所需要的iframe标签;
      *  start
      */

       const iframes = parent.document.getElementsByTagName('iframe');
       const iframe = iframes[0];
 
       /**
        *  将粘贴的img标签里的src值,用图片上传返回的url值 【强制】 替换;
        *  强制替换是因为图片此时已经显示在富文本里了;
        *  start
        */
          if (isIFrame(iframe) && iframe.contentWindow) {
              iframe.contentWindow.document
                                .getElementById(imgId)
                                .setAttribute('src', imageUrl);
             }



        /** end */


     /** end */


  /** end */

 

参考: https://stackoverflow.com/questions/56551644/property-contentwindow-does-not-exist-on-type-htmlelement-sending-from-one-s

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值