Refresh an iframe

后端 未结 4 1645
终归单人心
终归单人心 2021-01-05 17:38

How to refresh an iframe? For example:


I click on \"Videos\" in this iframe ,then c

4条回答
  •  清歌不尽
    2021-01-05 18:00

    You can only reload the current iframe href if it's for the same domain (single origin policy) with following code:

    
    
    document.getElementById('myIframe').contentWindow.location.reload(true);
    

    or get the current href

    var currentHref = document.getElementById('myIframe').contentWindow.location.href;
    

提交回复
热议问题