ifarmeInit.js 395 字节
Newer Older
Five-菜鸟级's avatar
init  
Five-菜鸟级 已提交
1 2 3 4 5 6 7 8 9 10 11

const autoIframeHeight = (that)=>{

  that.contentWindow.TimeID = that.contentWindow.setInterval(()=>{
      if(that&&that.contentWindow&&that.contentWindow.document&&that.height<that.contentWindow.document.body.scrollHeight){
        that.height = that.contentWindow.document.body.scrollHeight
      }else{
        that.contentWindow.clearInterval(that.contentWindow.TimeID)
      }
  },100)
}