微信长按出现菜单栏js代码

ios:

-webkit-user-select:none;
-ms-user-select: none;
-moz-user-select: none;
user-select: none;
-webkit-touch-callout:none;
-ms-touch-callout:none;
-mozt-touch-callout:none;
touch-callout:none;

安卓:
<div class="main3">touch事件</div>
$(function(){
$(‘.main3‘).bind(‘touchstart‘, function(e) {
if (e && e.preventDefault) {
e.preventDefault();
} else {
window.event.returnValue = false;
}
return false;
});
$(‘.main3‘).bind(‘touchmove‘, function(e) {
if (e && e.preventDefault) {
e.preventDefault();
} else {
window.event.returnValue = false;
}
return false;
});

$(‘.main3‘).bind(‘touchend‘, function(e) {
if (e && e.preventDefault) {
e.preventDefault();
} else {
window.event.returnValue = false;
}

})


})

微信长按出现菜单栏js代码

上一篇:仿微信随机红包代码


下一篇:创建微信订阅号全攻略