Disable popup back scrolling

function noScroll(flag){
  var mo=function(e){e.preventDefault()};
  flag ? stop(mo) : move(mo);
}

/***Prohibit sliding***/
function stop(mo){
  document.body.style.overflow='hidden';
  document.addEventListener("touchmove",mo,false);//Prohibit page sliding
}

/***Cancel the sliding limit***/
function move(mo){
  document.body.style.overflow='';//The scroll bar appears
  document.addEventListener('touchmove', function (event) {
    window.event. returnValue = true;
  }, false);
}

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324607511&siteId=291194637