码迷,mamicode.com
首页 > 其他好文 > 详细

翻牌购

时间:2015-08-21 13:32:00      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

1.点击出现弹框,禁止出现滚动

function notTouch(){   
    window.ontouchmove=function(e){
            e.preventDefault && e.preventDefault();
            e.returnValue=false;
            e.stopPropagation && e.stopPropagation();
            return false;
          }      
}

function goTouch(){
    window.ontouchmove=function(e){
            e.preventDefault && e.preventDefault();
            e.returnValue=true;
            e.stopPropagation && e.stopPropagation();
            return true;
        }
}

 

翻牌购

标签:

原文地址:http://www.cnblogs.com/della/p/4747492.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!