是否可以在JavaScript(或jQuery)中实现“长按”?怎么样?
alt text http://androinica.com/wp-content/uploads/2009/11/longpress_options.png
HTML
<a href="" title="">Long press</a>
的JavaScript
$("a").mouseup(function(){
// Clear timeout
return false;
}).mousedown(function(){
// Set timeout
return false;
});
答案 0 :(得分:154)
没有'jQuery'魔法,只有JavaScript计时器。
var pressTimer;
$("a").mouseup(function(){
clearTimeout(pressTimer);
// Clear timeout
return false;
}).mousedown(function(){
// Set timeout
pressTimer = window.setTimeout(function() { ... Your Code ...},1000);
return false;
});
答案 1 :(得分:28)
根据Maycow Moura的回答,我写了这个。它还确保用户不会进行右键单击,这会触发长按并在移动设备上运行。 DEMO
var node = document.getElementsByTagName("p")[0];
var longpress = false;
var presstimer = null;
var longtarget = null;
var cancel = function(e) {
if (presstimer !== null) {
clearTimeout(presstimer);
presstimer = null;
}
this.classList.remove("longpress");
};
var click = function(e) {
if (presstimer !== null) {
clearTimeout(presstimer);
presstimer = null;
}
this.classList.remove("longpress");
if (longpress) {
return false;
}
alert("press");
};
var start = function(e) {
console.log(e);
if (e.type === "click" && e.button !== 0) {
return;
}
longpress = false;
this.classList.add("longpress");
if (presstimer === null) {
presstimer = setTimeout(function() {
alert("long click");
longpress = true;
}, 1000);
}
return false;
};
node.addEventListener("mousedown", start);
node.addEventListener("touchstart", start);
node.addEventListener("click", click);
node.addEventListener("mouseout", cancel);
node.addEventListener("touchend", cancel);
node.addEventListener("touchleave", cancel);
node.addEventListener("touchcancel", cancel);
您还应该使用CSS动画添加一些指标:
p {
background: red;
padding: 100px;
}
.longpress {
-webkit-animation: 1s longpress;
animation: 1s longpress;
}
@-webkit-keyframes longpress {
0%, 20% { background: red; }
100% { background: yellow; }
}
@keyframes longpress {
0%, 20% { background: red; }
100% { background: yellow; }
}
答案 2 :(得分:25)
您可以使用jQuery mobile API的 taphold 事件。
jQuery("a").on("taphold", function( event ) { ... } )
答案 3 :(得分:15)
虽然它看起来很简单,可以通过超时和几个鼠标事件处理程序自行实现,但是当您考虑点击 - 拖动 - 释放,支持按下和长按等情况时,它会变得有点复杂相同的元素,并与iPad等触摸设备一起使用。我最终使用longclick jQuery plugin(Github),它为我处理这些事情。如果您只需要支持移动电话等触摸屏设备,也可以尝试使用jQuery Mobile taphold event。
答案 4 :(得分:10)
jQuery插件。只需添加$(expression).longClick(function() { <your code here> });
。第二个参数是保持时间;默认超时为500毫秒。
(function($) {
$.fn.longClick = function(callback, timeout) {
var timer;
timeout = timeout || 500;
$(this).mousedown(function() {
timer = setTimeout(function() { callback(); }, timeout);
return false;
});
$(document).mouseup(function() {
clearTimeout(timer);
return false;
});
};
})(jQuery);
答案 5 :(得分:8)
我创建了long-press-event (0.5k纯JavaScript)来解决这个问题,它向DOM添加了一个long-press
事件。
在任意元素上收听long-press
:
// the event bubbles, so you can listen at the root level
document.addEventListener('long-press', function(e) {
console.log(e.target);
});
在特定元素上收听long-press
:
// get the element
var el = document.getElementById('idOfElement');
// add a long-press event listener
el.addEventListener('long-press', function(e) {
// stop the event from bubbling up
e.preventDefault()
console.log(e.target);
});
适用于IE9 +,Chrome,Firefox,Safari&amp;混合移动应用程序(iOS / Android上的Cordova和Ionic)
答案 6 :(得分:5)
对于跨平台开发人员(注意到目前为止给出的所有答案都不适用于iOS):
Mouseup / down似乎在 android 上运行正常 - 但不是所有设备,即(三星tab4)。在 iOS 上完全不起作用。
进一步研究它似乎是由于元素具有选择而原生放大率使听众中断。
如果用户将图像保持500毫秒,则此事件侦听器可以在引导模式中打开缩略图图像。
它使用响应式图像类,因此显示更大版本的图像。 这段代码已经过全面测试(iPad / Tab4 / TabA / Galaxy4):
var pressTimer;
$(".thumbnail").on('touchend', function (e) {
clearTimeout(pressTimer);
}).on('touchstart', function (e) {
var target = $(e.currentTarget);
var imagePath = target.find('img').attr('src');
var title = target.find('.myCaption:visible').first().text();
$('#dds-modal-title').text(title);
$('#dds-modal-img').attr('src', imagePath);
// Set timeout
pressTimer = window.setTimeout(function () {
$('#dds-modal').modal('show');
}, 500)
});
答案 7 :(得分:5)
$(document).ready(function () {
var longpress = false;
$("button").on('click', function () {
(longpress) ? alert("Long Press") : alert("Short Press");
});
var startTime, endTime;
$("button").on('mousedown', function () {
startTime = new Date().getTime();
});
$("button").on('mouseup', function () {
endTime = new Date().getTime();
longpress = (endTime - startTime < 500) ? false : true;
});
});
答案 8 :(得分:4)
Diodeus的答案很棒,但它阻止你添加一个onClick功能,如果你点击onclick它就永远不会运行hold功能。 Razzak的答案几乎是完美的,但它只在mouseup上运行hold函数,通常,即使用户继续保持,该函数也会运行。
所以,我加入了两个,并做了这个:
$(element).on('click', function () {
if(longpress) { // if detect hold, stop onclick function
return false;
};
});
$(element).on('mousedown', function () {
longpress = false; //longpress is false initially
pressTimer = window.setTimeout(function(){
// your code here
longpress = true; //if run hold function, longpress is true
},1000)
});
$(element).on('mouseup', function () {
clearTimeout(pressTimer); //clear time on mouseup
});
答案 9 :(得分:2)
您可以在鼠标按下时设置该元素的超时,并在鼠标向上清除它:
$("a").mousedown(function() {
// set timeout for this element
var timeout = window.setTimeout(function() { /* … */ }, 1234);
$(this).mouseup(function() {
// clear timeout for this element
window.clearTimeout(timeout);
// reset mouse up event handler
$(this).unbind("mouseup");
return false;
});
return false;
});
这样每个元素都有自己的超时。
答案 10 :(得分:2)
对于现代移动浏览器:
document.addEventListener('contextmenu', callback);
https://developer.mozilla.org/en-US/docs/Web/Events/contextmenu
答案 11 :(得分:1)
您可以使用jquery-mobile的taphold。包括jquery-mobile.js,以下代码可以正常工作
$(document).on("pagecreate","#pagename",function(){
$("p").on("taphold",function(){
$(this).hide(); //your code
});
});
答案 12 :(得分:1)
最优雅,最干净的是jQuery插件: https://github.com/untill/jquery.longclick/, 也可作为packacke: https://www.npmjs.com/package/jquery.longclick
简而言之,您可以这样使用它:
authenticateUser()
此插件的优点在于,与此处的其他一些答案相比,仍然可以单击事件。另请注意,在鼠标放置之前,就像在设备上长按一样,会发生长时间点击。所以,这是一个功能。
答案 13 :(得分: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);
}
}
答案 14 :(得分:0)
doc.addEeventListener("touchstart", function(){
// your code ...
}, false);
答案 15 :(得分:0)
对我而言,它可以使用该代码(使用jQuery):
var int = null,
fired = false;
var longclickFilm = function($t) {
$body.css('background', 'red');
},
clickFilm = function($t) {
$t = $t.clone(false, false);
var $to = $('footer > div:first');
$to.find('.empty').remove();
$t.appendTo($to);
},
touchStartFilm = function(event) {
event.preventDefault();
fired = false;
int = setTimeout(function($t) {
longclickFilm($t);
fired = true;
}, 2000, $(this)); // 2 sec for long click ?
return false;
},
touchEndFilm = function(event) {
event.preventDefault();
clearTimeout(int);
if (fired) return false;
else clickFilm($(this));
return false;
};
$('ul#thelist .thumbBox')
.live('mousedown touchstart', touchStartFilm)
.live('mouseup touchend touchcancel', touchEndFilm);
答案 16 :(得分:0)
您可以使用jquery
触摸事件。 (see here)
let holdBtn = $('#holdBtn')
let holdDuration = 1000
let holdTimer
holdBtn.on('touchend', function () {
// finish hold
});
holdBtn.on('touchstart', function () {
// start hold
holdTimer = setTimeout(function() {
//action after certain time of hold
}, holdDuration );
});
答案 17 :(得分:0)
我需要一些用于长按键盘事件的东西,所以我写了这个。
var longpressKeys = [13];
var longpressTimeout = 1500;
var longpressActive = false;
var longpressFunc = null;
document.addEventListener('keydown', function(e) {
if (longpressFunc == null && longpressKeys.indexOf(e.keyCode) > -1) {
longpressFunc = setTimeout(function() {
console.log('longpress triggered');
longpressActive = true;
}, longpressTimeout);
// any key not defined as a longpress
} else if (longpressKeys.indexOf(e.keyCode) == -1) {
console.log('shortpress triggered');
}
});
document.addEventListener('keyup', function(e) {
clearTimeout(longpressFunc);
longpressFunc = null;
// longpress key triggered as a shortpress
if (!longpressActive && longpressKeys.indexOf(e.keyCode) > -1) {
console.log('shortpress triggered');
}
longpressActive = false;
});
答案 18 :(得分:0)
我认为这可以为您提供帮助:
var image_save_msg = 'You Can Not Save images!';
var no_menu_msg = 'Context Menu disabled!';
var smessage = "Content is protected !!";
function disableEnterKey(e) {
if (e.ctrlKey) {
var key;
if (window.event)
key = window.event.keyCode; //IE
else
key = e.which; //firefox (97)
//if (key != 17) alert(key);
if (key == 97 || key == 65 || key == 67 || key == 99 || key == 88 || key == 120 || key == 26 || key == 85 || key == 86 || key == 83 || key == 43) {
show_wpcp_message('You are not allowed to copy content or view source');
return false;
} else
return true;
}
}
function disable_copy(e) {
var elemtype = e.target.nodeName;
var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);
elemtype = elemtype.toUpperCase();
var checker_IMG = '';
if (elemtype == "IMG" && checker_IMG == 'checked' && e.detail >= 2) {
show_wpcp_message(alertMsg_IMG);
return false;
}
if (elemtype != "TEXT" && elemtype != "TEXTAREA" && elemtype != "INPUT" && elemtype != "PASSWORD" && elemtype != "SELECT" && elemtype != "OPTION" && elemtype != "EMBED") {
if (smessage !== "" && e.detail == 2)
show_wpcp_message(smessage);
if (isSafari)
return true;
else
return false;
}
}
function disable_copy_ie() {
var elemtype = window.event.srcElement.nodeName;
elemtype = elemtype.toUpperCase();
if (elemtype == "IMG") {
show_wpcp_message(alertMsg_IMG);
return false;
}
if (elemtype != "TEXT" && elemtype != "TEXTAREA" && elemtype != "INPUT" && elemtype != "PASSWORD" && elemtype != "SELECT" && elemtype != "OPTION" && elemtype != "EMBED") {
//alert(navigator.userAgent.indexOf('MSIE'));
//if (smessage !== "") show_wpcp_message(smessage);
return false;
}
}
function reEnable() {
return true;
}
document.onkeydown = disableEnterKey;
document.onselectstart = disable_copy_ie;
if (navigator.userAgent.indexOf('MSIE') == -1) {
document.onmousedown = disable_copy;
document.onclick = reEnable;
}
function disableSelection(target) {
//For IE This code will work
if (typeof target.onselectstart != "undefined")
target.onselectstart = disable_copy_ie;
//For Firefox This code will work
else if (typeof target.style.MozUserSelect != "undefined") {
target.style.MozUserSelect = "none";
}
//All other (ie: Opera) This code will work
else
target.onmousedown = function() {
return false
}
target.style.cursor = "default";
}
// on_body_load
window.onload = function() {
disableSelection(document.body);
};
// disable_Right_Click
document.ondragstart = function() {
return false;
}
function nocontext(e) {
return false;
}
document.oncontextmenu = nocontext;
答案 19 :(得分:-1)
这对我有用:
const a = document.querySelector('a');
a.oncontextmenu = function() {
console.log('south north');
};
https://developer.mozilla.org/docs/Web/API/GlobalEventHandlers/oncontextmenu