我使用.on(“touchstart mousedown”,function(e){pTouchDown(e)});
它只用一根手指触摸。 但我也希望用两个手指触摸一些操作...
答案 0 :(得分:24)
触摸事件包含一个名为touches
的属性,其中包含所有可用的触摸点。您可以阅读有关TouchEvents on MDN.
在您的情况下,您需要检查touches
属性的长度:
$someElement.on('touchstart', function (e) {
if (e.touches.length > 1)
// ... do what you like here
});