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

不知道为什么运行不了,求解答~

<!DOCTYPE html>

<html>

    <head>

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

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

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

        <style>

            span{

    position:absolute;

    width:80px;

    height:80px;

    border: solid 1px #ccc;

    margin: 0px 8px;

    background-color: Red;

    color:White;

    vertical-align:middle

                }

        </style>

    </head>

    

    <body>

      <input id="toleft" type="button" value="左移" />

      <input id="toright" type="button" value="右移" />

      <span></span>

      <div></div>

      <script>

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

              $("span").animate({

                  right:"+=50px";

              },3000,function(){

                  $("div").html('执行完成');

              })

              });

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

              $("span").animate({

                  left:"+=50px";

              },3000,function(){

                  $("div").html('执行完成');

              })

              })

      </script>

    </body>

</html>


正在回答

1 回答

right和left是属性,要加引号,后面的分号可以不用

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

胡胡圈圈 提问者

好的,我试试
2016-05-02 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

不知道为什么运行不了,求解答~

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