<iframe>重载方法

解决方法

  1. 方法1
    document.getElementById('iframeId').contentWindow.location.reload(true);
  2. 方法2
    document.getElementById('iframeId').src=url;
  3. 方法3 
    $("#iframeId").attr('src', url);

遇到的问题

如果使用方法1,存在跨域问题的话,会出现 Error in v-on handler: "Error: Permission denied to access property "reload""  错误提示。希望大家可以在评论区提出解决方法。

答谢

文章引用:iframe重新加载_weixin_30883271的博客-CSDN博客

你可能感兴趣的:(Vue,vue,javascript)