刷新浏览器上选定的iframe大小

时间:2013-01-03 12:19:54

标签: javascript html iframe refresh

我是开发方面的完全初学者,非常感谢任何帮助。

我有以下代码在调整浏览器大小时刷新整个页面:

$(window).bind('resize',function(){
     window.location.href = window.location.href; 
});

但是,我希望将刷新定位到具有唯一ID而不是整个页面的特定iframe。

再次感谢您的任何帮助。

1 个答案:

答案 0 :(得分:3)

使用:

$(window).resize(function(){
    document.getElementById('FrameID').contentDocument.location.reload(true);
});

如果您有多个iFrame,请考虑使用类而不是ID。