有没有替代-webkit-touch-callout的方法,它适用于基于Android的手机。我正在尝试禁用移动设备中的长触摸式弹出窗口。我试图绑定jQuerys taphold事件以返回false;但没有成功...有什么想法吗?谢谢!
发布于 2014-06-15 00:40:08
<!DOCTYPE html>
<html>
<head>
<script>
function absorbEvent_(event) {
var e = event || window.event;
e.preventDefault && e.preventDefault();
e.stopPropagation && e.stopPropagation();
e.cancelBubble = true;
e.returnValue = false;
return false;
}
function preventLongPressMenu(node) {
node.ontouchstart = absorbEvent_;
node.ontouchmove = absorbEvent_;
node.ontouchend = absorbEvent_;
node.ontouchcancel = absorbEvent_;
}
function init() {
preventLongPressMenu(document.getElementById('theimage'));
}
</script>
</head>
<body onload="init()">
<img id="theimage" src="http://www.google.com/logos/arthurboyd2010-hp.jpg" width="400">
</body>
</html>https://stackoverflow.com/questions/16011159
复制相似问题