2

load()関数を使用して、メニューのボタンをクリックすることにより、さまざまなページから詳細を動的にフェッチしています。ボタンの1つは、独自のjquery効果を使用する画像ギャラリーを指しています。しかし、それらのスクリプトは実行されていません。getscript()を使用して明示的にロードしようとしましたが、どちらも機能しません。コードは次のとおりです。

$(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-consoleに配置し、[Enter]をクリックするだけで、エフェクトが再び完全に機能します。

また、上記の手順を正確に繰り返しても、エフェクトが機能しない場合があります。ここで何が問題になる可能性がありますか?getscriptメソッドが非同期であると聞き、ajax syncをオフに設定しようとしましたが、それでも予測できない結果が得られます。

4

2 に答える 2

7

load()へのコールバックとしてgetScript()を呼び出したにもかかわらず、フローを台無しにしていたコンテンツの前にスクリプトをロードしていることがわかりました。コールバックとしてshowNewContent()を呼び出す代わりに、ロードが完了するのを待つために、showNewContent 、つまり関数へのポインター(丸括弧なし)を呼び出す必要がありました。次のコードはそれを解決しました:

$('#content').load(toLoad,showNewContent);
    function showNewContent() {
        $('#content').fadeIn(1000);
        $.getScript("gallery.js");
}
于 2012-10-08T10:04:59.890 に答える
0

あなたのギャラリーでjsを置き換えます

$(document).ready(function(){

MyGallery=function(){

メインスクリプト:

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

...。

...。

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

...。

...。

何が原因でそのようなことが起こったのかわかりません。yurコードフローのアイデアをよく確認してください。

于 2012-10-07T23:21:52.527 に答える