function downLoad() {
const iframe = document.createElement('iframe')
iframe.style.display = 'none' iframe.style.height = 0 iframe.src = url + 参数/* 动态创建iframe,并且放入页面当中,不显示在页面当中 */ document.body.append(iframe) setTimeout(()=>{ /* 延时两秒将新创建的iframe标签去掉,防止影响下次下载 */ iframe.remove() }, 2000)
}
标签:style,get,前段,iframe,document,下载 From: https://www.cnblogs.com/yang-study/p/16876925.html