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')); |
沒有留言:
張貼留言