加载jCarousel时出错

时间:2012-11-19 06:56:04

标签: jquery wordpress jquery-ui jcarousel

我目前正在从另一个框架将网站迁移到WordPress。该网站包含一个使用jCarousel的动态水平轮播,显示最近的5个帖子。在新网站中,我已经包含了脚本文件,并使用了旧网站中提供的相同脚本代码。但是,没有生成脚本给出的动态jQuery部分。我收到的错误是:

未捕获的TypeError:对象#没有方法'jcarousel'

用于调用jCarousel的脚本如下:

<script>
jQuery(window).load(function(){

featurecarousel(jQuery('#homepage-features-carousel .homepage-carousel-primary ul'));

featurecarousel_secondary(jQuery('#homepage-features-carousel .homepage-carousel- secondary ul'));
jQuery('.carousel-image, .carousel-caption-hidden, .jcarousel- control').removeClass('disappear');

jQuery('.homepage-carousel-loading').addClass('disappear');

if(jQuery.browser.safari) {
twoday.carousel1.next();
twoday.carousel2.next();
});
</script>

捕获错误的Javascript函数如下:

function featurecarousel(el) {

var c = el.jcarousel({

**Uncaught TypeError: Object #<Object> has no method 'jcarousel'**
    animation: 600,
    auto: 5,
    buttonNextHTML: '<a href="#" title="Prev"><span>Next</span></a>',
    buttonPrevHTML: '<a href="#" title="Next"><span>Prev</span></a>',
    itemVisibleInCallback: {
        onBeforeAnimation: featurecarousel_itemVisibleInBefore,
        onAfterAnimation:  featurecarousel_itemVisibleInAfter
    },

    initCallback: carousel_primary_initCallback,
    scroll:1,
    wrap: 'both'
 });
 }

请帮我调试此问题。我错过了简单和基本的东西吗? 提前致谢

0 个答案:

没有答案