嗨,我有一个锚标记,但我想使用jquery来防止默认行为。但没有得到确切的解决方案。你能告诉我我的代码有什么问题吗?
$(document).ready(function(){ $("a[name]").click(function(event){ alert("As you can see, the link no longer took you to jquery.com"); eventpreventDefault(); }); });
答案 0 :(得分:4)
你错过了一个点:
eventpreventDefault();
应该是:
event.preventDefault();
如果您希望禁用默认操作(转到指定链接)以及事件冒泡,您也可以使用return false
:
$(document).ready(function(){
$("a[name]").click(function(event){
alert("As you can see, the link no longer took you to jquery.com");
return false;
});
});