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

<!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>


qq_闹闹猪_0
浏览 1296回答 1
1回答

BluyeaSun

在js代码的最后位置少了一个大括号和小括号  })$(#text)少了引号左右方向也整反了
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JQuery