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

代码bug,求运行。。。

<!DOCTYPE html>

<html>

    <head>

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

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

    </head>

    <style type="text/css">

        span{

position: absolute;

width: 80px;

height: 80px;

border: solid 1px #ccc;

margin: 0px 8px;

background-color: Red;

color: White;

vertical-align: middle;

margin-left: 100px;

            }

    </style>

<body>

    <input id="button1" type="button" value="左移50px" />

    <input id="button2" type="button" value="右移50px" /><br/>

    <span></span>

    

    <script type="text/javascript">

        $(function(){

            $("#button1").bind("click",function(){

                $("span").animate({left: "+=50px"},2000);

            });

            $("#button2").bind("click",function(){

                $("span").animate({right: "+=50px"},2000);

            });            

        });

    </script>

    

</body>

</html>


正在回答

2 回答

不知是不是版本的问题,把right:"+=50px"改为left:"-=50px"就可以用

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

泸狗汪汪汪 提问者

非常感谢~~~
2015-03-19 回复 有任何疑惑可以回复我~

right:"-=50px"也是可以的

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

泸狗汪汪汪 提问者

(⊙v⊙)嗯
2015-03-19 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

代码bug,求运行。。。

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