在 Iframe 之前加载 javascript
在此页面中: http://www.depositosalto.com.br/lojas.php ,我有一个 javascript 来调整 div 和包含谷歌地图位置的 iframe 的大小。碰巧只有在 iframe 加载后才执行 javascript。我如何才能先执行javascript?
编辑:javascript不是调整iframe的大小,而是调整另一个div的内容id =“conteudo”。
In this page: http://www.depositosalto.com.br/lojas.php, I have a javascript to resize a div and a iframe containing a google maps location. Happens that the javascript is executed only after the iframe is loaded. How I do to the javascript be executed first?
EDIT: The javascript is not to resize the iframe, but another div with the content with id = "conteudo".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以计算 IFRAME 的正确大小,然后使用 JavaScript 生成 IFRAME 标记。这将保证你的 IFRAME 仅在 JS 代码执行后才会出现。
PS 使用标签来确保关闭 JavaScript 的人仍然可以通过 Google 地图看到 IFRAME。
You can calculate the proper size of the IFRAME and then generate the IFRAME tag using JavaScript. This will guarantee that your IFRAME will appear only after JS code executed.
P.S. Use tag to make sure that people who has JavaScript turned off will still see the IFRAME with Google Map.
使用
选项。这会在页面首次加载时触发。
Use the
<body onload: >
option. This triggers when the page is first loaded.