父窗口jquery触发iframe按钮事件来改变父窗口元素值

来源:互联网 发布:调查问卷数据分析 编辑:程序博客网 时间:2024/06/10 13:19
<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>