0
User Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET4.0C; .NET4.0E)
Timestamp: Fri, 22 Jun 2012 05:20:36 UTC
Message: Expected identifier, string or number
Line: 39
Char: 1
Code: 0
URI: [http://app.eschooltrack.com/scripts/functions.js][1]

有了这个错误,完整的jQuery文件IE在转换为 asp.net 版本后无法正常工作,它在其他浏览器和HTML版本中工作正常,

请帮我。

4

1 回答 1

0

尝试在你的functions.js中删除高度:20和高度:160之后的逗号

$(function(){
$('#alerts').vTicker({ 
speed: 500,
pause: 4000,
animation: 'fade',
mousePause: true,
showItems: 2,
direction: 'up',
height:20
});
});



$(function(){
$('#news').vTicker({ 
speed: 500,
pause: 4000,
animation: 'fade',
mousePause: true,
showItems: 2,
direction: 'up',
height:160
});
});
于 2012-06-22T07:00:48.387 回答