如何在单击链接时使用jQuery进行提醒?

时间:2015-11-25 16:54:19

标签: javascript jquery html

如果点击了<a>,我想提醒某些内容,但只有在有真实链接的情况下才会提醒。我有这个代码,但它确实没有...

$("a").click(function(){
    if ($(this).attr("href") != "#" && $(this).attr("href") != "") {
        alert("foo");
    }
});

有什么问题?

由于

1 个答案:

答案 0 :(得分:0)

确保您在方法中调用e.preventDefault()

$("a").click(function(e){
    if ($(this).attr("href") != "#" && $(this).attr("href") != "") {
        alert("foo");
        e.preventDefault();
    }
});