Since the contents of the iframe has a separate window
element, you can do this in a script inside of the iframe.
$(window).resize(function(){
var object = $(this)
// Use `object.height()` and `object.width()`.
});
You could also use $("#the_iframe")[0].contentWindow.window
(or something like that) instead of window
to access the window
object of the iframe from the scope that contains the iframe.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…