本文将带你了解微信开发微信长按出现菜单栏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;安卓:
touch事件
$(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;
}
}
)
}
)
本文由职坐标整理并发布,希望对同学们有所帮助。了解更多详情请关注职坐标移动开发之微信频道!