前台页面出现js兼容问题 cls_template.php(1161) : eval()'d code on line

2016-07-07 14:59 来源:www.chinab4c.com 作者:ecshop专家

前台页面出现js兼容问题 cls_template.php(1161) : eval()'d code on line 221

我在模板文件引用了一些js,但是放在模板上后,前台就会出现 includes\cls_template.php(1161) : eval()'d code on line 221错误,我不知道是那个问题,求高手帮忙解决一下!谢谢!




<script type="text/javascript">


//品牌翻转
var allBrandAnimate = function(t,d){
if(t.find('.brand b').length != 0){return false;}
t.find('.brand a').each(function(){$(this).append('<b>' + $(this).find('img').attr('alt') + '</b>')});
t.find('.brand a').hover(function(){
$(this).find('img').stop().animate({
'height':0,
'top':'35px'
},d,function(){
$(this).hide().next().show();
$(this).next().animate({
'height':'70px',
'top':'0'
},d);
});

},function(){
$(this).find('b').animate({
'height':0,
'top':'35px'
},d,function(){
$(this).hide().prev().show().animate({
'height':'70px',
'top':'0'
},d);
});
});
}
allBrandAnimate($('#allbrand'),80);


</script>

回答:
看看221行是哪行 一般是语法有错误