iframe阻止scrollTop阅读

时间:2018-11-08 16:29:52

标签: javascript jquery iframe

我体内有2个iframe。

我的问题是,当我滑动js来读取屏幕的当前位置时。滚动式scrool正常工作,但是当它处于移动状态并且通过touchmove方法激活该功能时,该功能将在屏幕通过iframe时停止执行。

    $('body').on('mousewheel DOMMouseScroll touchmove', function(e) {
            console.log($(document).scrollTop());
...
        });

iframe:

<body>

 <iframe src="..." style="width: 100%; height: 300px;" frameborder="0" allowtransparency="yes"></iframe>

 <iframe src="..." style="width: 100%; height: 300px;" frameborder="0" allowtransparency="yes"></iframe>

</body>

0 个答案:

没有答案