請告訴我如何停止加載頁面onclick如果頁面已經加載?加載頁面點擊,如果沒有加載之前
$(".Tab_heading:first-child").live('click',function(){
$.ajax({
type: 'get',
url: "relatedInfo.action",
data: $(".relatedinfo_wrapper"),
success: relatedInfodesktop
});
$(".Tab_heading").removeClass("tabselected");
$(this).addClass("tabselected");
$(".RelService_wrapper").show();
$(".DepService_wrapper").hide();
});
Tab_heading作爲標籤(有兩個選項卡鏈接類=「Tab_heading」) 如果標題的頁面,在用戶點擊加載 但如果重新在標題,如果用戶點擊該頁面已經加載,它不應該再次加載(GET http:xxxxxxx/relatedInfo.action ---我不應該得到這個) 請提供解決方案
除非您使用的是舊的(預1.7)版本的jQuery,你應該用['。對()'](http://api.jquery.com/on/),而不是過時的[ '.live()'](http://api.jquery.com/live/)。 – ajp15243
.live()函數沒有問題 – Sweetz
這是一個友好的建議,使用最新的API,因爲'.live()'被從jQuery中移除以支持'.on()'。 – ajp15243