iscroll IOS无法滑动

<div id="scroll" class="scroll">
   <div id="modal-body" class="modal-body">内容</div>
</div>
.scroll {      position: relative;      line-height: 1.6;      height: 5rem;
    }    .modal-body {      line-height: 1.6;      padding: 10px 0;      font-size: 120%;      overflow-y: scroll;      -webkit-overflow-scrolling: touch;
    }
$("#rule").on("click", function () {
      $(".modal").show();      if (!haveScroll) {        new IScroll("#scroll", {          mouseWheel: true,          scrollY: true,          tap: true
        });
        haveScroll = true;
      }
    });

安卓没问题可以滑动,可是IOS滑不动,请问是怎么回事呀,求指导


交互式爱情
浏览 1298回答 1
1回答

神不在的星期二

问题已经解决了。为了禁止body滑动,在安卓时添加下面代码,IOS不添加$(".modal").on("touchmove",&nbsp;function&nbsp;(e)&nbsp;{ &nbsp;&nbsp;&nbsp;e.preventDefault(); });
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript