ios上的页面只用一行没办法解决
1 |
document.documentElement.style.overflow='hidden'; |
所以需要额外添加其他的,把touchmove禁止掉
1 2 3 |
$("body").on("touchmove",function(event){ event.preventDefault; }, false); |
当然了,可能需要另一个操作让页面重新开始滚动
1 2 3 4 |
$('.share-close').on('click',function () { $('.cover-index').fadeOut(); $("body").off("touchmove"); }) |
 ……