<iframe>重载方法
作者:互联网
解决方法
- 方法1
document.getElementById('iframeId').contentWindow.location.reload(true);
- 方法2
document.getElementById('iframeId').src=url;
- 方法3
$("#iframeId").attr('src', url);
遇到的问题
如果使用方法1,存在跨域问题的话,会出现 Error in v-on handler: "Error: Permission denied to access property "reload"" 错误提示。希望大家可以在评论区提出解决方法。
答谢
文章引用:iframe重新加载_weixin_30883271的博客-CSDN博客
标签:src,iframeId,url,iframe,Error,重载,document,方法 来源: https://blog.csdn.net/baidu_38493460/article/details/121016140