div 不动
我试图移动 div
的位置,但它没有移动。有什么想法吗?
$(document).ready(function()
{
$("#btn1").click(function(){
$("#box").attr("left","300px");
});
});
I am trying to move div
's position but it is not moving. Any idea?
$(document).ready(function()
{
$("#btn1").click(function(){
$("#box").attr("left","300px");
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以试试这个
You can try this
简单的答案:
$('#box').css({'left' : '300px'});
还要确保您的
位置
设置为绝对
、相对
或固定
。simple answer:
$('#box').css({'left' : '300px'});
Also make sure your
position
is set to eitherabsolute
,relative
orfixed
.div
可能是position: static
。之一
position:relative
position:absolute
position:fixed
才能使
left
产生任何效果。The
div
is probablyposition: static
.It needs to be one of
position: relative
position: absolute
position: fixed
for
left
to have any effect.