4

伙计们是否可以使用 jquery 为 a href 创建双击事件

4

2 回答 2

5

双击锚点执行操作的问题是页面将在第一次单击时重定向,从而阻止双击及时响应。

如果您想“拦截”点击事件,以便在页面重定向之前有机会触发双击事件,那么您可能必须像这样设置点击超时:

$('a').click(function () {
    var href = $(this).attr('href');

    // Redirect only after 500 milliseconds
    if (!$(this).data('timer')) {
       $(this).data('timer', setTimeout(function () {
          window.location = href;
       }, 500));
    }
    return false; // Prevent default action (redirecting)
});

$('a').dblclick(function () {
    clearTimeout($(this).data('timer'));
    $(this).data('timer', null);

    // Do something else on double click

    return false;
});

演示:http: //jsfiddle.net/4788T/1/

于 2011-01-27T15:24:40.507 回答
0

如果您a链接的 id 为“id”,则:

$("#id").bind("dblclick", ....);
于 2011-01-27T15:14:32.893 回答