我体内有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>