我有一些jQuery的,看起來像這樣,jQuery的單擊事件
$('.career_select .selectitems').click(function(){
var selectedCareer = $(this).attr('title');
$.ajax({
type: 'POST',
url: '/roadmap/step_two',
data: 'career_choice='+selectedCareer+"&ajax=true&submit_career=Next",
success: function(html){
$('.hfeed').append(html);
$('#grade_choice').SelectCustomizer();
}
});
});
我的問題是,如果用戶一直點擊那麼.hfeed狀態越來越附加給它的數據。我如何限制它只能點擊一次?
另外我想提及'$ .ajax'可以提供'beforeSend'和'complete'回調來處理禁用/隱藏控件,並提供比'.one()'更好的錯誤恢復。 – Codesleuth 2010-09-03 14:48:26
@Paulo你能給我一個你的答案B的例子嗎? – 2010-09-03 16:01:22