在jQuery中,当您处理click事件时, 返回false可阻止链接以通常的方式响应防止发生默认操作(访问href属性)(根据PoweRoy的评论和Erik的回答):$('a.someclass').click(function(e){ // Special stuff to do when this link is clicked... // Cancel the default action e.preventDefault();});