iFrame src change event detection?

前端 未结 7 1454
夕颜
夕颜 2020-11-22 08:02

Assuming I have no control over the content in the iframe, is there any way that I can detect a src change in it via the parent page? Some sort of onload maybe?

My l

7条回答
  •  独厮守ぢ
    2020-11-22 08:31

    The iframe always keeps the parent page, you should use this to detect in which page you are in the iframe:

    Html code:

    
    

    Js:

        function resizeIframe(obj) {
            alert(obj.contentWindow.location.pathname);
        }
    

提交回复
热议问题