Greasemonkey(userscript)阻止链接点击ajax帖子

时间:2012-10-30 16:42:27

标签: jquery greasemonkey userscripts

我试图在用户点击链接时阻止AJAX帖子。

到目前为止,我有这个,但是preventDefault()无效:

$('.link-class').live('click', function (event) { 
    console.log("live----Stopped?!?!"); 
    event.preventDefault(); 
    return false; 
 });

1 个答案:

答案 0 :(得分:1)

可能会发生太多事情,链接到目标页面。

一般情况下,如果拦截click不起作用,请尝试拦截mousedownmouseup,因为有些网页会触发这些网页。

$('.link-class').live ('click mousedown mouseup', function (event) { 
    console.log ("live----Stopped?!?!"); 
    event.preventDefault (); 
    return false; 
 } );