一开始 用的是 window.open() 方法
弃用的原因想必大家都知道 就是体感很差 浏览器会拦截住

后来选择了使用iframe 相比 window,open() 方法 稍强一些

this.picData.forEach(item=>{
  if(item.isChecked){
    const iframe = document.createElement("iframe");
    iframe.style.display = "none";
    iframe.style.height = 0;
    iframe.src = item.url; 
    document.body.appendChild(iframe);
    // 1s之后删除
    setTimeout(()=>{
      iframe.remove();
    },1000);
  }
})
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐