网页CSS加JS问题,

<divid="test"style="position:relative;margin:0auto;height:424px;overflow:hidden"><ols... <div id="test" style="position:relative;margin:0 auto;height:424px;overflow:hidden"><ol style="list-style:none;width:84px;padding:0;height:82500px;overflow:hidden;*position:relative;*zoom:1">test</ol></div>
当ol里的内容高度超过424的时候,后面的内容就不显示出来,

如果用JS操作这个DIV 做到一种滚动效果, 因为要给这个DIV的滚动条做皮肤

所以不想用默认的,JS操作什么属性才能让DIV滚动.
展开
 我来答
蔷薇恋花语0hG
2009-09-19 · TA获得超过810个赞
知道小有建树答主
回答量:261
采纳率:0%
帮助的人:242万
展开全部
<script type="text/javascript">
var y1 = -1;
window.document.onmousedown=function(){
y1 = event.y;
window.status = y1 + " ";
};
window.document.onmouseup=function(){
y1 = -1;
window.status += y1 + " ";
};
window.document.onmousemove=function(){
if(y1!=-1){
document.getElementById("div").scrollTop += event.y - y1;
y1 = event.y;
window.status += y1 + " ";
}
};
</script>
小小青竹子
2009-09-28 · TA获得超过101个赞
知道答主
回答量:125
采纳率:0%
帮助的人:59.8万
展开全部
<!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=gb2312" />
<title>无标题文档</title>
</head>
<script type="text/javascript">
var y1 = -1;
window.document.onmousedown=function(){
y1 = event.y;
window.status = y1 + " ";
};
window.document.onmouseup=function(){
y1 = -1;
window.status += y1 + " ";
};
window.document.onmousemove=function(){
if(y1!=-1){
document.getElementById("test").scrollTop += event.y - y1;
y1 = event.y;
window.status += y1 + " ";
}
};
</script>
<body>
<div id="test" style="position:relative;margin:0 auto;height:424px;overflow:hidden">
<ol style="list-style:none;width:84px;padding:0;height:82500px;overflow:hidden;*position:relative;*zoom:1">
test</ol>
</div>

</body>
</html>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式