在Chrome / FF中使用a:active
链接时,右键单击链接并在新选项卡中打开以设置链接的颜色以显示其已被单击。然而,在IE中,这不起作用。有什么想法吗?
答案 0 :(得分:0)
$(document).on("mousedown", "a",
function (e) {
if (e.button == 2) {
$(this).css("color", "red");
return false;
}
return true;
});