通过使用本教程从头开始构建旋转器脚本,我将自定义图像标题转换为图像旋转器:http: //fearlessflyer.com/2012/12/how-to-create-a-jquery-image-rotator。我通过教程一步一步地输入代码,但是当我尝试运行时,Firebug 控制台给出了这个错误:
ReferenceError:rotateImages 未定义
xx = setInterval('rotateImages()', 4000);
考虑到我可能打错了一行代码,我从工作演示中复制了脚本,我收到了同样的错误。
我在 .js 文件中运行此脚本:
(function($) {
$(document).ready(function() {
//loop through pictures
$('.headerpic_inner').each(function(e) {
if(e == 0) {
$(this).addClass('current');
}
$(this).attr('id', 'handle' + e);
});
//loop through tags
$('.tabs li').each(function(e) {
if(e == 0) {
$(this).addClass('current');
}
$(this).wrapInner('<a class="title"></a>');
$(this).append('<a><img /></a>');
$(this).children('a').attr('href', '#handle' + e);
y = $('#handle' + e + ' img').attr('src');
$(this).find('img').attr('src', y);
t = $(this).children('a').text();
$('#handle' + e).append('<h2>' + t + '</h2>');
});
//change image on click
$('.tabs li a').click(function() {
c = $(this).attr('href');
if($(c).hasClass('current')) {
return false;
} else {
showImage($(c), 20);
$('.tabs li').removeClass('current');
$(this).parent().addClass('current');
return false;
}
});
//call to rotate images
runRotateImages();
$('#headerpic').hover(function() {
clearTimeout(xx);
},
function() {
runRotateImages();
});
}); //end of $(document).ready function
//showImage function
function showImage(img, duration) {
$('.headerpic_inner').removeClass('current').css({
'opacity' : 0.0,
'zIndex' : 2,
});
img.animate({opacity:1.0}, duration, function() {
$(this).addClass('current').css({zIndex:1});
});
}
//rotateImages function
function rotateImages() {
var curPhoto = $('div.current');
var nxtPhoto = curPhoto.next();
var curTab = $('.tabs li.current');
var nxtTab = curTab.next();
if(nxtPhoto.length == 0) {
nxtPhoto = $('#headerpic div:first');
nxtTab = $('.tabs li:first-child');
}
curTab.removeClass('current');
nxtTab.addClass('current');
showImage(nxtPhoto, 300);
}
//runRotateImages function
function runRotateImages() {
xx = setInterval('rotateImages()', 4000);
}
})(jQuery);
谁能告诉我为什么会说 rotateImages() 没有定义?