为什么我的向上滚动都动不了呢
<!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>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="zh-CN" />
<meta name="Keywords" content="" />
<meta name="Description" content="" />
<style type="text/css">
*{padding:0;margin:0;}
#moocBox{
overflow:hidden;
height:120px;
width:300px;
border: 1px solid #ccc;
margin: 10px auto;
}
#moocBox ul li{
height:24px;line-height:24px;
padding:0 10px;
}
#moocBox ul li a{
font-size:12px;
color:#666;
}
#con1{
list-style:none;
}
</style>
</head>
<body>
<div id="moocBox">
<ul id="con1">
<li><a href="#"><strong>1[公告]</strong>京东中国特产·盱眙馆正式启动</a></li>
<li><a href="#"><strong>2[特惠]</strong>京东中国特产·盱眙馆正式启动</a></li>
<li><a href="#"><strong>3[特惠]</strong>TCL电视 直降千元再返千元!</a></li>
<li><a href="#"><strong>4[公告]</strong>京东中国特产·盱眙馆正式启动</a></li>
<li><a href="#"><strong>5[公告]</strong>里约奥运吉祥物 京东首发</a></li>
<li><a href="#"><strong>6[公告]</strong>京东中国特产·盱眙馆正式启动</a></li>
<li><a href="#"><strong>7[万和]</strong>品质狂欢618,抽4999元旅游基金</a></li>
<li><a href="#"><strong>8[公告]</strong>阅读指数帮您选好书好碟</a></li>
</ul>
<ul id="con2"></ul>
</div>
<script src="style/jquery-2.1.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
var area = $('#moocBox');
area.scrollTop = 10;
})
</script>
</body>
</html>