解決方法就是彈框事件觸發的時候,給body加這些屬性:
.index_body { overflow-y: hidden;/*爲了兼容普通PC的瀏覽器*/ height: 100%; position: fixed; }不能用下面這個方法,這樣都不能滑動了
/*去掉手機滑動默認行爲*/ $('body').on('touchmove', function (event) { event.preventDefault(); });