jquery的animate屬性,在ie7下多寫了逗號就不行了

下面簡單的jquery的animate動畫,在ie6/7下不能執行,其他瀏覽器一律OK~(包括ie8/9)
XML/HTML code
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標題文檔</title>
 
<script type='text/javascript'
src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js?ver=1.4.2'>
</script
 
</head>
<body>
 
<div id="123" class="123" >10000</div>
 
<script type="text/javascript">
$(".123").mouseover(function(){
$(this).animate({ 
fontSize:"50px",
}, 300 ); 
});
</script>
 
</body>
</html>


原因分析:
19行多了逗號
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章