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

左移,右移 简单动画,问题,,,,,, 我就想知道我哪儿错了? 没效果!

<!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>        
    </head>
    <style>
    div{
        width:100px;
        height:100px;
        background:#b00;
        position:relative;
        left:100px;
        top:100px;
    }
    </style>
    <body>
    <input type=button value="向左" id="left"/>
    <input type=button value="向右" id="right"/>
    <div></div>    
    <script>
$(function(){
   $("#left").blind("click",function(){
       $("div").animate({
           left:"-=100"
       },1000,function(){
           $(this).html("左移")
       })
   })
   
   $("#right").blind("click",function(){
       $("div").animate({
           left:"+=100"
       },1000,function(){
           $(this).html("右移")
       })
   })         
})
    </script>    
    </body>
</html>

正在回答

1 回答

bind  写错了,写代码要细心。

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

慕码人0911192 提问者

在写错剁手!
2015-12-06 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

左移,右移 简单动画,问题,,,,,, 我就想知道我哪儿错了? 没效果!

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