84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
现在iframe能够在加载的时候自适应高度,但是如果在框架中进行一些操作话 (如jquery 中的 append() 和 本来是折叠的元素现在要展开 ) 框架高度不会跟着改变。 请问有什么方法可以动态让iframe自适应高度?
(如jquery 中的 append() 和 本来是折叠的元素现在要展开 )
走同样的路,发现不同的人生
可以通过 Iframe 父子页面方法互相调用的方法自动调整假设主页面是 A ,Iframe 是 B。A 中预设一个 resizeIframe 方法,接收 width 、height,用于改变 B 的大小。当 B 的大小改变时,B 主动调用 A 的resizeIframe,把获取到的自身长宽传过去,下面的就不用多说了吧。
resizeIframe
width
height
可以通过 Iframe 父子页面方法互相调用的方法自动调整
假设主页面是 A ,Iframe 是 B。
A 中预设一个
resizeIframe
方法,接收width
、height
,用于改变 B 的大小。当 B 的大小改变时,B 主动调用 A 的
resizeIframe
,把获取到的自身长宽传过去,下面的就不用多说了吧。