2014年2月25日 星期二

How to reload iFrame using jQuery

01//reload 1 iframe
02$('#iframe')[0].contentWindow.location.reload(true);
03  
04//reload all iFrames
05$('iframe').each(function() {
06  this.contentWindow.location.reload(true);
07});
08
09//Another way to reload all iFrames
10$('iframe').attr('src', $('iframe').attr('src'));

參考來源:
http://www.jquerybyexample.net/2012/08/how-to-reload-iframe-using-jquery.html

沒有留言:

張貼留言