我不知道为什么会出现这个错误,我在头部添加了 jquery 库(1.7.1),在页脚中添加了循环插件和我的自定义代码。
<script src="<?php echo get_template_directory_uri(); ?>/js/jquery.cycle.all.js"></script>
<script src="<?php echo get_template_directory_uri(); ?>/sliders/nivo-slider/jquery.nivo.slider.js"></script>
<script src="<?php echo get_template_directory_uri(); ?>/js/general.js"></script>
在 general.js 中,我有以下内容:
if($('.testimonials').length) {
function onAfter(curr, next, opts, fwd) {
var $ht = $(this).height();
$(this).parent().animate({height: $ht});
}
$('#testimonial-slider').cycle({
fx: 'fade',
timeout: 8000,
height: 'auto',
pause: 1,
before: onAfter,
cleartypeNoBg: true
});
}
我什至试图将它包装在一个<script></script>
标签中,以防万一有其他东西general.js
破坏它,但我没有运气......
这是一个wordpress网站,我不知道为什么会这样......