我有一段用于图像库的 jquery 代码,我有一个 js 文件以及一些其他函数。当我通过单击链接加载画廊时,图像会出现,但效果不起作用。但是,当我将相关代码粘贴到 chrome 控制台并按 Enter 时,它就像一个魅力。有没有我忽略的某种冲突?我的 jquery 代码如下(尽管我认为它没有问题,因为当我让代码在单独的网页上或通过控制台独立运行时它工作得很好):
$(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 中有 hashchange 时都会调用这个函数,这可能是我的画廊函数没有被调用的原因。我曾尝试将画廊函数放在 hashchange 函数中,但它不起作用。我感觉这里有冲突,因为我的画廊功能中的警报没有触发。
更新2:我在jquery-documentation中阅读了加载函数,如果加载函数像这样执行 $('#b').load('article.html #target'); 然后不执行正在加载的文档中的脚本块。这可能是问题所在,我该如何克服这个问题?