在父窗口调用iframe里面的函数(各浏览器兼容)

1 篇文章 0 订阅
1 篇文章 0 订阅
I struggled with this problem for a while and finally found a rocksolid solution through a posting by Bobince in Stackoverflow ( here ):
Instead of searching the function from the parent side, it is much saver and more predictable to hand over a function object from the IFrame side. This also makes it very easy to check if the IFrame function has already loaded. It works like a charm in Chrome, FF, IE 9, 8 and even 7.

Here is an example:

TESTouter.html
Copy code
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. var gIframeFunc = undefined;
  5. function callIframeFunc(){
  6. if(typeof gIframeFunc != 'undefined'){
  7. gIframeFunc();
  8. }else{
  9. alert('Iframe function not available')
  10. }
  11. }
  12. </script>
  13. </head>
  14. <body>
  15. <iframe id="myIframe" src="TESTinner.html"></iframe>
  16. <button οnclick="callIframeFunc();">Access function</button>
  17. </body>
  18. </html>
TESTinner.html
Copy code
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function iframeFunc(){
  5. alert('Iframe function IS WORKING')
  6. }

  7. parent.gIframeFunc = iframeFunc;
  8. </script>
  9. </head>
  10. <body>
  11. This is the iframe body.
  12. </body>
  13. </html>

Cheers, Jörg.

 

 

来自Calling Function inside an iFrame

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值