私は、他のいくつかの関数と一緒にjsファイルにある画像ギャラリー用のjqueryコードを持っています。リンクをクリックしてギャラリーを読み込むと、画像は表示されますが、効果がありません。ただし、関連するコードをクロムコンソールに貼り付けてEnterキーを押すと、魅力的に機能します。私が見落としているある種の競合はありますか?私のjqueryコードは次のとおりです(ただし、コードを別のWebページまたはコンソールで個別に実行するとうまく機能するため、問題があるとは思いません):
$(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
$('#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>
});
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
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
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
}
$('#next a').click(function() {
return swapFirstLast(true); //swap first image to last position
});
$('#prev a').click(function() {
return swapFirstLast(false); //swap last image to first position
});
});
更新 1 : スクリプトには hashchange 用の別の関数があり、次のようになります。
$(function(){
$(window).hashchange( function(){
$(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').load(toLoad);
});
});
})
そして、この関数は、URL にハッシュ変更があるたびに呼び出されるように見えました。これが、ギャラリー関数が呼び出されない理由である可能性があります。ハッシュチェンジ関数内にギャラリー関数を入れてみましたが、うまくいきません。ここで競合が発生しているように感じます。ギャラリー機能のアラートがトリガーされないからです。
更新 2:ロード関数の jquery-documentation を読んで、ロード関数が次のように実行された場合 $('#b').load('article.html #target'); 読み込まれているドキュメントのスクリプト ブロックは実行されません。それが問題かもしれません。どうすればこれを克服できますか?