最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How catch iframe resize event from inside the iframe (iframe and the page - same domain) - Stack Overflow

programmeradmin4浏览0评论

I try to listen from inside of iframe to changes of iframe width/height with:

$(window).resize(function(){
    alert('1 on inside iframe');
});

or:

$(window.parent).find('iframe').resize(function(){
    alert('2 on inside iframe');
}); 

but nothing happens when iframe size changes. (I need a cross-browser solution: IE7, Chrome, Firefox, Safari.)

I try to listen from inside of iframe to changes of iframe width/height with:

$(window).resize(function(){
    alert('1 on inside iframe');
});

or:

$(window.parent).find('iframe').resize(function(){
    alert('2 on inside iframe');
}); 

but nothing happens when iframe size changes. (I need a cross-browser solution: IE7, Chrome, Firefox, Safari.)

Share Improve this question edited Sep 10, 2021 at 7:44 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Feb 28, 2012 at 14:55 BenBen 25.8k35 gold badges113 silver badges166 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 3
$(body).resize(function(){
    alert('on inside iframe');
});

Edit :

in html

<body onresize="myFunction()">

You need to call the resize() handler from the parent document on the iframe:

$('iframe').resize(function() {} );

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论