使用iscroll时,移动端遇到需要长按复制功能,但是iscroll屏蔽了浏览器默认事件,所以实现不了。
解决方案:
myScroll = new IScroll('#wrapper',{ preventDefault:false, });//去掉屏蔽/*----------------------------------------*/document.addEventListener("touchmove",function(e){ e.preventDefault();},false);//只有在滑动的时候屏蔽