我正在使用 jquery 在链接上绑定一些点击事件。使用以下代码,我已经能够通过 ajax 更改链接的 href - 但是当 href 更改并且我尝试单击链接时,没有任何反应。
想知道是否有人能发现我遗漏的明显错误。
$('a.shortlist_action').bind('click',function(){
item = $(this);
href = item.attr('href');
parent = $(this).parent('.shortlist_action_container');
item = $(this);
$.ajax({
url: $(this).attr('href'),
success: function(data) {
item.addClass('largeviewplannerbutton');
item.attr("href", '/myaccount/planner');
}
}
});
// stop event propagation here
return false;
});
谢谢你。