这里有一个很好的例子,可以在javascript中长按:Long Press in JavaScript?
但它没有提供了解新闻的持续时间。
如果我想根据印刷机的长度做不同的事情我不能使用该帖子中的图案。
我试图通过在变量on('mousedown')中保存当前时间来做类似的事情 然后计算('mouseup')上的时差。 这在“普通”浏览器的普通javasript页面中工作正常。
然而在我的phonegap应用程序中发生了一些事情, 如果手指长时间保持在scring上(比如5秒......),看起来像是没有调用mouseup事件。
这是一些原生的移动浏览器行为吗?我可以以某种方式覆盖它吗?
我使用简单的jQuery而不是jQuery mobile。
任何想法?
答案 0 :(得分:0)
您可以查看在jQuery mobile源代码中如何实现taphold
和vmouseup
(handleTouchEnd()
第752行)事件。
由于它已经过测试和实现,我建议使用jquery mobile而不是jquery和modify(因为它已经处理了与每个移动浏览器相关的所有“怪癖”),并根据需要更改代码。
答案 1 :(得分:0)
您可以检查识别点击或长按时间[jQuery]
function AddButtonEventListener() {
try {
var mousedowntime;
var presstime;
$("button[id$='" + buttonID + "']").mousedown(function() {
var d = new Date();
mousedowntime = d.getTime();
});
$("button[id$='" + buttonID + "']").mouseup(function() {
var d = new Date();
presstime = d.getTime() - mousedowntime;
if (presstime > 999/*You can decide the time*/) {
//Do_Action_Long_Press_Event();
}
else {
//Do_Action_Click_Event();
}
});
}
catch (err) {
alert(err.message);
}
}
答案 2 :(得分:0)
请注意,如果由于某种原因不使用jQuery Mobile,此解决方案很有用。 我使用了文章Fast Touch Event Handling,只添加了一段代码
$.event.special.tap = {
distanceThreshold: 10,
timeThreshold: 350,
setup: function () {
var self = this,
$self = $(self);
// Bind touch start
$self.on('touchstart', function (startEvent) {
// Save the target element of the start event
var target = startEvent.target,
touchStart = startEvent.originalEvent.touches[0],
startX = touchStart.pageX,
startY = touchStart.pageY,
threshold = $.event.special.tap.distanceThreshold,
timeout,
expired = false;
function timerFired() {
expired = true;
}
function removeTapHandler() {
clearTimeout(timeout);
$self.off('touchmove', moveHandler).off('touchend', tapHandler).off('touchcancel', removeTapHandler);
};
function tapHandler(endEvent) {
removeTapHandler();
if (target == endEvent.target) {
if (expired) {
$.event.simulate('longtap', self, endEvent);
} else {
$.event.simulate('tap', self, endEvent);
}
}
};
// Remove tap and move handlers if the touch moves too far
function moveHandler(moveEvent) {
var touchMove = moveEvent.originalEvent.touches[0],
moveX = touchMove.pageX,
moveY = touchMove.pageY;
if (Math.abs(moveX - startX) > threshold || Math.abs(moveY - startY) > threshold) {
removeTapHandler();
}
};
// Remove the tap and move handlers if the timeout expires
timeout = setTimeout(timerFired, $.event.special.tap.timeThreshold);
// When a touch starts, bind a touch end and touch move handler
$self.on('touchmove', moveHandler).on('touchend', tapHandler).on('touchcancel', removeTapHandler);
});
}
};
所以,现在我有一个tap和一个longtap事件