JS刷新Iframe,跨域

2020-07-22  本文已影响0人  泡杯感冒灵

需求

项目中会有刷新iframe的需求,

方法

<iframe :src="qrcodePath" name="refresh_name" style="width:300px;height:500px;" id="qrcodeIframe">
<el-button type="primary" @click="refreshIframe" class="refreshBtn">刷新</el-button></iframe>

  refreshIframe(){
       const iframe = document.getElementById('qrcodeIframe');
       window.open(iframe.src,'refresh_name','')
  } 
上一篇 下一篇

猜你喜欢

热点阅读