关于js中div漂浮问题,我的div不动

<html><head><metacharset="utf-8"/><styletype="text/css">#ad{width:120px;height:120px;... <html>
<head>
<meta charset="utf-8"/>
<style type="text/css">

#ad{width:120px;height:120px;background:red;position:relative;}
</style>
<script type="text/javascript">
var obj=null;
var x=10,y=10;

var id=null;
var dtop=false;
function init(){
obj=document.getElementById("ad");
obj.style.left=x;
obj.style.top=y;
id=setInterval(move,100);
}
function move(){
height=document.documentElement.clientHeight-obj.offsetHeight;
if(y >= height){
y = height;
dtop = true;
}
if(y<=10){
y = 10;
dtop = false;
}
if(dtop){
y -= 10;
}
else{
y += 10

}
obj.style.posTop=y;
}

</script>
</head>
<body onload="init()">
<div id="ad"></div>
</body>
</html>
展开
 我来答
woshidaniel
2015-10-10 · TA获得超过9240个赞
知道小有建树答主
回答量:1760
采纳率:96%
帮助的人:947万
展开全部
obj.style.posTop=y;
改成
obj.style.top=y;
追问
还是不动
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式