我有自动高度的iframe。并且高度不固定。 如何跟踪它的大小调整?
我需要这样的东西:
$('iframe').resize(function(){
alert($(this).height());
});
答案 0 :(得分:0)
请参阅 http://benalman.com/projects/jquery-resize-plugin/
http://benalman.com/code/projects/jquery-resize/examples/resize/
他们甚至有一个名为Resizing an Iframe as its content grows
如果由于某种原因无法将其应用于iframe,请使用包装器
这已被问过几次,每个人都推荐插件
How to detect DIV's dimension changed?
Detecting when a div's height changes using jQuery
Detect height change of a DIV with jQuery using Resize Plugin