我已经尝试过这些代码片段,第一个适用于 IE 和 Chrome,第二个仅适用于 Chrome,但它们都不适用于 Firefox。我想要的是阻止页面通过链接转到其他页面
$('.album a').click(function(){
event.returnValue = false;
//other codes
})
$('.album a').click(function(){
event.preventDefault();
//other codes
})
编辑:Ian 的这个片段对我有用
$('.album a').click(function(e){
e.preventDefault();
//other codes
});