写源代码:Javascript动态改变DIV位置(随便的举一个简单的例子)
4个回答
展开全部
这只是一个很简单的改变div的left和top来实现其位置
<html>
<head>
</head>
<body onload="Main.onLoad();">
<div id="obj" style=" position: absolute;">
一行目标文字!
</div>
<script type="text/javascript">
var x = 0,y=100;
var obj=document.getElementById("obj");
function img()
{
obj.style.left = x ;
obj.style.top = y ;
x = x +1;
if(x>=500)
{
clearInterval(time);
}
}
time= setInterval("img()", 10);
</script>
</body></html>
<html>
<head>
</head>
<body onload="Main.onLoad();">
<div id="obj" style=" position: absolute;">
一行目标文字!
</div>
<script type="text/javascript">
var x = 0,y=100;
var obj=document.getElementById("obj");
function img()
{
obj.style.left = x ;
obj.style.top = y ;
x = x +1;
if(x>=500)
{
clearInterval(time);
}
}
time= setInterval("img()", 10);
</script>
</body></html>
展开全部
很好改变啊,把这个div设成绝对位置,跟据Javascript改变div的绝对位置就可以了。我给你写一个啊,不明白的再问我,需要用jQuery。
<div class="result" style="width:500px; height:400px; border:3px solid #D2D2D2">
<div class="result_1" style="position: absolute; width:100px; height:50px; border:1px solid #306; left: 30px; top: 40px;">
改变位置
</div>
<span style=" border:2px solid #036; cursor:pointer;"> 点击改变位置</span>
<script type="text/javascript">
jQuery(function(){
jQuery('span').click(function(){
jQuery('.result_1').css('left','400px');
jQuery('.result_1').css('top','300px');
});
});
</script>
</div>
<div class="result" style="width:500px; height:400px; border:3px solid #D2D2D2">
<div class="result_1" style="position: absolute; width:100px; height:50px; border:1px solid #306; left: 30px; top: 40px;">
改变位置
</div>
<span style=" border:2px solid #036; cursor:pointer;"> 点击改变位置</span>
<script type="text/javascript">
jQuery(function(){
jQuery('span').click(function(){
jQuery('.result_1').css('left','400px');
jQuery('.result_1').css('top','300px');
});
});
</script>
</div>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
var obj=document.document.getElementById('divid');
obj.style.top="100";
obj.style.left="100";
obj.style.top="100";
obj.style.left="100";
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-10-31
展开全部
<div id="div" style="position:relative;width:400px;height:300px;background:#f00;margin:auto;top:50px;left:0px;">
</div>
<script>
var obj;
window.onload = init;
function init(){
obj = document.getElementById("div");
change(100,100);
}
function change(x,y){
obj.style['left'] = x;
obj.style['right'] = y;
}
</script>
</div>
<script>
var obj;
window.onload = init;
function init(){
obj = document.getElementById("div");
change(100,100);
}
function change(x,y){
obj.style['left'] = x;
obj.style['right'] = y;
}
</script>
追问
用IE9打开显示是红色一个方框,改变不了方框的位置。
追答
如果要兼容的话。
function change(x,y){
obj.style.cssText = "left:"+x+"px;top:"+y+"px;";
}
或者
function change(x,y){
obj.style.left = x;
obj.style.top = y;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询