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

哪里错了???怎么不移动!求解

哪里错了???怎么不移动!求解

qq_闹闹猪_0 2016-03-05 15:30:14
<!DOCTYPE html><html>    <head>        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />        <title>jQuery动画特效</title>        <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>    <style type="text/css">        #tip{     position:absolute;    left:200px;    top:50px;    width:80px;    height:80px;    border: solid 1px #ccc;    margin: 0px 8px;    background-color: Red;    color:White;    vertical-align:middle;    }       </style>        </head>        <body>        <input type="button" id="btnLeft" value="左移按钮">        <input type="button" id="btnRight" value="右移按钮">        <div id="tip"></div>        <div id="text"></div>        <script>            $(function(){                var $div1=$("#tip");               $("#btnLeft").bind("click",function(){                   $div1.animate({                       left:"+=50px"                   },3000,function(){                      $(#text).html("执行完成!");                   })                                  });               $("#btnRight").bind("click",function(){                   $div1.animate({                       left:"-=50px"                   },3000,function(){                        $(#text).html("执行完成!");                       })                   })                                 </script></html>
查看完整描述

1 回答

?
BluyeaSun

TA贡献7条经验 获得超2个赞

在js代码的最后位置少了一个大括号和小括号  })

$(#text)少了引号

左右方向也整反了

查看完整回答
反对 回复 2016-03-05
  • 1 回答
  • 0 关注
  • 1295 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信