检测iframe上的事件

时间:2017-01-31 10:54:09

标签: javascript html css

我的应用程序在iframe中打开..

 $(window).scroll(function() { alert("scroll is");});   

如果我运行此代码没有iframe它可以使用iframe它不起作用

1 个答案:

答案 0 :(得分:0)

以下是我在iFrame中包含的HTML文件的内容,Javascript被正确调用。也许将它与你所写的相比较。

<html>
  <head>
    <title>Test iFrame</title>

    <!-- Add Some Space to Simulate Content (not needed) -->
    <style>
       body {
           width: 100vh;
           height: 100vh;
       }
    </style>
  </head>
  <body>
    <p>iFrame content goes here</p>

    <script type="text/javascript" src="jquery-3.1.1.min.js"></script>
    <script>

      // wait for jQuery to load
      $(document).ready(function() {
          $(window).scroll(function() {
              alert("scroll is");
          });
      });

    </script>
  </body>
</html>