How to force an iFrame to reload once it loads

前端 未结 4 838
夕颜
夕颜 2021-01-01 04:43

I have numerous iframes that load specific content on my pages. Both the parent and iframe are on the same domain.

I have a scrollbar inside the iframe that doesn\'

4条回答
  •  情话喂你
    2021-01-01 05:04

    On the iframe element itself, set an onload:

    iframe.onload = function() {this.contentWindow.location.reload(); this.onload = null;};
    

    (Only works if the iframe's location is in the same domain as the main page)

提交回复
热议问题