只需左键单击链接即可

时间:2009-12-03 14:13:48

标签: javascript ajax javascript-events jquery

We are使用“点击”事件来点击链接并通过ajax加载内容。 但事件也发生在鼠标右键和滚轮点击上。 如何处理只剩下? 混淆

// jquery.coyod-engine-0.5.0.js
$(document).click(function(e){

        var t = $(e.target);            
        if(t.hasClass('aj'))
        {               

            e.stopPropagation();
            e.preventDefault();
            showContent(t.attr('href'));                            
            return false;               
        }

        return true;

    });

谢谢!

3 个答案:

答案 0 :(得分:3)

在功能开始时检查是否使用了左键

//left == 0, middle == 1, right == 2
if (e.button != 0) return true;
else {
  //whatever
  return false;
}

答案 1 :(得分:2)

只需在回调开始时添加:

if (e.button != 0) return true;

答案 2 :(得分:0)

相信它有一个答案:

How to detect left click anywhere on the document using jQuery?

但是浏览器如何定义按钮ID

存在各种各样的问题