为了账号安全,请及时绑定邮箱和手机立即绑定

为什么可以左移,右移却不行啊,检查半天没发现代码不妥啊。

<script type="text/javascript">
        $(function(){
            $("#b1").bind("click",function(){
                $("h1").html("move left");
                $("div").animate({
                    left:"-=50px"
                },1500,function(){
                    $("h1").html("finish.");
                });
               
            });
            $("#b2").bind("click",function(){
                $("h1").html("move right");
                $("div").animate({
                    left:"+=50px"
                },1500,function(){
                    $("h1").html("finish.")
                });
            });
        });
    </script>

正在回答

2 回答

<style type="text/css">
                .div1{
                    position:relative;
                width:100px;
                height:100px;
                border: solid 2px black;
                background-color: purple;
                color:White;
                margin:20px auto;
                margin-left:60px;
                    }
            </style>  

0 回复 有任何疑惑可以回复我~

我试了一下可以的,div的css是不是有问题?

我的div的css是这样的

<style type="text/css">

div{

position:absolute;

background-color:red;

width:20px;

height:20px;

left:50%;

right:50%;

}

</style>


0 回复 有任何疑惑可以回复我~
#1

仔仔se7en 提问者

.div1{ position:relative; width:100px; height:100px; border: solid 2px black; background-color: purple; color:White; margin:20px auto; margin-left:60px;
2016-07-18 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
jQuery基础课程
  • 参与学习       154768    人
  • 解答问题       7184    个

加入课程学习,有效提高前端开发速度

进入课程

为什么可以左移,右移却不行啊,检查半天没发现代码不妥啊。

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信