0
我有一些jQuery顯示/隱藏div與其中的微調取決於.ajaxStart
或.ajaxStop
。不過這似乎太籠統了。我點擊的其他鏈接 - 或者我嘗試提交的表單 - 觸發微調器。那麼有沒有辦法限制下面的代碼僅適用於我的ul#infoContainer
中的鏈接?只分配jQuery ajaxStart/ajaxStop到特定鏈接
$(function() {
$('#loading')
.hide() // hide initially
.ajaxStart(function(){
$(this).show();
})
.ajaxStop(function(){
$(this).hide();
})
});