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

求解,代码哪里错了。。。

<!DOCTYPE html>

<html>

    <head>

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

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

        <style type="text/css">

            #one{

                position:absolute;

                top:150px;

                left:150px;

                height:100px;

                width:100px;

                border:1px solid red;}

        </style>

    </head>

    

    <body>

        <h4>动画特效</h4>

        <div>

        <input type='button' value='左移' id='left'/>

        <input type='button' value='右移' id='right'/>

        </div>

        <div id='one'></div>

        <script type="text/javascript">

        

           $("#left").bind("click",function(){$("#one").animate({left:"-=50px"},1000));

           

           $("#right").bind("click",function(){$("#one").animate({left:"+=50px"},1000));

     

        </script>

    </body>

</html>


正在回答

1 回答

第一你没有引入jQuery的CDN

第二

$("#left").bind("click",function(){$("#one").animate({left:"-=50px"},1000));        

$("#right").bind("click",function(){$("#one").animate({left:"+=50px"},1000));

这两句话缺了半拉}大括号


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

weibo_这都很重要_0 提问者

非常感谢!
2015-02-27 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

求解,代码哪里错了。。。

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