How to get the height of an iframe with javascript from inside the iframe? What about pages with multiple iframes?

后端 未结 5 407
粉色の甜心
粉色の甜心 2020-12-31 01:38

Is there a way to detect the height and width of an iframe, by executing a script from inside the iframe? I need to dynamically position some elements in the iframe accordi

5条回答
  •  感动是毒
    2020-12-31 02:22

    yes, you can execute parent's window function from inside the frame, and pass parameters, like this:

    window.parent.FUNC_NAME(iframe_height,iframe_width)
    

    just remember to define function FUNC_NAME in the parent window

提交回复
热议问题