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

帮忙看下代码哪里错了,为什么点击按钮没效果呢

<!DOCTYPE html>

<html>

    <head>

        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

        <title>jQuery动画特效</title>

    </head>

    <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>

    <script type="text/javascript">

    $(function(){

        $(".left").bind("click",function(){

            $("div").animate({

                left: "-=50px"

            },3000)

        })

        $(".right").bind("click",function(){

            $("div").animate({

                left: "+=50px"

            },3000)

        })

    })

    </script>

    <body>

        <div style="width:100px;height:100px;background:red;margin:0 auto;"></div>

        <button type="button" class="left" >left</button>

        <button type="button" class="right" >right</button>

    </body>

    

</html>


正在回答

3 回答

需要在div的css样式中加入定位哦,position:absoulute;left:50px;top:50px; 要不left:"+=50"不起作用的

然后你在点击试试,就好用了

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

懂了,因为left是position的时候用到的,不定位的话用margin-left就可以喽,感谢!

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

这个是css的东西,为什么会影响jquery的效果呢?能解释下吗?

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

举报

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

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

进入课程

帮忙看下代码哪里错了,为什么点击按钮没效果呢

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