我认为JavaScript是我最好的选择,因为它是客户端。
您可以通过两种方式点击我将关注的链接 - 您可以点击链接或右键单击它并选择在新标签页中打开。
如何检测用户是否点击了链接或在新标签中将其打开?
答案 0 :(得分:1)
您可以区分以下点击事件。
$('#element').mousedown(function(event) {
switch (event.which) {
case 1:
alert('Left Mouse button pressed.');
break;
case 2:
alert('Middle Mouse button pressed.');
break;
case 3:
alert('Right Mouse button pressed.');
break;
default:
alert('You have a strange Mouse!');
}
});