This question already has answers here:
How to detect left click anywhere on the document using jQuery?
                                
                                    (4个答案)
                                
                        
                7天前关闭。
            
        

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;

    });


谢谢!

最佳答案

在函数开始时进行检查,检查是否使用了左键

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

09-07 19:51