一些不常用的

移动端开发的时候嵌入图片又不想让用户保存 给图片加上 --   style="pointer-events:none"

禁止页面滑动

        $("#box").on("touchmove",function(event){

            event.preventDefault;

        }, false)

你可能感兴趣的:(一些不常用的)