2012-10-07 227 views
1

我使用load()函數通過單擊菜單中的按鈕從不同頁面動態獲取細節。其中一個按鈕指向使用自己的jQuery效果的圖像庫。但是這些腳本沒有運行。我試圖使用getscript()顯式加載它們,但那也不起作用。這裏的代碼:jquery:在ajax加載後運行腳本()

$(document).ready(function() { 

var hash = window.location.hash.substr(1); 
var href = $('#nav li a').each(function(){ 
    var href = $(this).attr('href'); 
    if((hash==href.substr(0,href.length-4))&&(hash!='')){ 
     var toLoad = hash+'.php #content'; 
     $('#content').load(toLoad); 
    }           
}); 

$('#nav li a').click(function(){ 

    var toLoad = $(this).attr('href')+' #content'; 
    $('#content').hide(); 
    window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-4); 
    $('#content').load(toLoad,showNewContent()); 
    function showNewContent() { 
     $('#content').fadeIn(1000); 
     $.getScript("gallery.js"); 
    } 

    return false; 

}); 

}); 

這是我的gallery.js文件的內容。確切的效果可能是無關緊要的,我已經粘貼下面的代碼,以顯示我的警報盒的位置:

$(document).ready(function(){ 
//perform actions when DOM is ready 
    var z = 0; //for setting the initial z-index's 
    var inAnimation = false; //flag for testing if we are in a animation 
    alert("1"); 
    $('#pictures img').each(function() { //set the initial z-index's  
    z++; //at the end we have the highest z-index value stored in the z variable 
    $(this).css('z-index', z); //apply increased z-index to <img> 
    alert("2"); 
    }); 

    function swapFirstLast(isFirst) { 
    if(inAnimation) return false; //if already swapping pictures just return 
    else inAnimation = true; //set the flag that we process a image 
    var processZindex, direction, newZindex, inDeCrease; //change for previous or next image 
    alert("3"); 
    if(isFirst) { processZindex = z; direction = '-'; newZindex = 1; inDeCrease = 1; } //set variables for "next" action 
    else { processZindex = 1; direction = ''; newZindex = z; inDeCrease = -1; } //set variables for "previous" action 

    $('#pictures img').each(function() { //process each image 
    alert("4"); 
      if($(this).css('z-index') == processZindex) { //if its the image we need to process 
     $(this).animate({ 'top' : direction + $(this).height() + 'px' }, 'slow', function() { //animate the img above/under the gallery (assuming all pictures are equal height) 
      $(this).css('z-index', newZindex) //set new z-index 
      .animate({ 'top' : '0' }, 'slow', function() { //animate the image back to its original position 
       inAnimation = false; //reset the flag 
      }); 
     }); 
     } else { //not the image we need to process, only in/de-crease z-index 
     $(this).animate({ 'top' : '0' }, 'slow', function() { //make sure to wait swapping the z-index when image is above/under the gallery 
      $(this).css('z-index', parseInt($(this).css('z-index')) + inDeCrease); //in/de-crease the z-index by one 
     }); 
     } 
    }); 

    return false; //don't follow the clicked link 
    } 

    $('#next1 a').click(function() { 
     alert("5"); 
    return swapFirstLast(true); //swap first image to last position 
    }); 

    $('#prev1 a').click(function() { 
     alert("6"); 
    return swapFirstLast(false); //swap last image to first position 
    }); 

}); 
//Function for z-index based gallery ends here 

這裏是我的發現:

我做了CTRL + F5並加載從開始頁面,然後點擊圖庫按鈕。我得到警報「1」。圖像加載,但動畫不起作用。

我再次單擊畫廊按鈕,無需刷新,我從1到6獲得所有適當的警報,效果就像一個魅力。

當效果不起作用時,我只需將gallery.js的內容放在chrome控制檯中,然後單擊enter,並且效果再次完美。

此外,有些時候效果不起作用,儘管重複上述步驟是準確的。這裏可能是什麼問題?我聽說getscript方法是異步的,我甚至嘗試設置ajax同步關閉,但我仍然得到不可預知的結果。

+0

使用成功:funcion()回調調用腳本的東西加載後 –

回答

6

我發現儘管調用getScript()作爲回調到加載(),腳本加載'之前'內容可能會搞亂流。我不需要調用showNewContent()作爲回調函數,我需要調用showNewContent即指向函數(不帶圓括號)的指針,以等待加載完成。下面的代碼解決它:

$('#content').load(toLoad,showNewContent); 
    function showNewContent() { 
     $('#content').fadeIn(1000); 
     $.getScript("gallery.js"); 
} 
+0

的brakets!非常感謝。 – RevConcept

0

在您的畫廊JS更換

$(document).ready(function(){ 

MyGallery=function(){ 

在主腳本:

var MyGallery=function(); 
$(document).ready(function() { 

....

....

function showNewContent() { 
     $('#content').fadeIn(1000); 
     $.getScript("gallery.js",{success: MyGallery}); 
    } 

....

....

我不知道是什麼原因導致你做這樣的事情,更好地審查尤爾碼流的想法....