码迷,mamicode.com
首页 > Web开发 > 详细

父窗口jquery触发iframe按钮事件(转载)

时间:2015-07-30 18:26:08      阅读:315      评论:0      收藏:0      [点我收藏+]

标签:

原文地址: http://blog.csdn.net/muziduoxi/article/details/11123923

 

<script type="text/javascript">
$(document).ready(function(e){
      var iframe = document.getElementById("Box"); 
    if (iframe.attachEvent) { 
        iframe.attachEvent("onload", function() { 
                    //以下操作必须在iframe加载完后才可进行 
            alert(‘1‘);
        }); 
    } else { 
        iframe.onload = function() { 
                    //以下操作必须在iframe加载完后才可进行 
           $("#Box").contents().find("#btn1").click(function(e){alert(‘0000133‘);$("#test").val("00000000000000000");return false;});//jquery 方法1 
        }; 
    } 
 
</script>

父窗口jquery触发iframe按钮事件(转载)

标签:

原文地址:http://www.cnblogs.com/mailaidedt/p/4689879.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!