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

我的这个程序怎么不动的,哪里错了啊

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

        top:50px;

        position:absolute;

        width:80px;

        height:80px;

        background:red;

        left:0px;}

    </style>

    <body>

     <div ></div>

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

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

     <span></span>

    </body>

    <script type="text/javascript">

    $ (function(){

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

            $("div").animate({

                left: '+=50px'

            },300,function(){$("span").html("左移成功");});

        

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

            $("div").animate({

                left: '-=50px'

            },300,function(){$("span").val("右移成功");});

        })

        

    </script>

</html>


正在回答

1 回答

原来括弧没有加完整

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

举报

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

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

进入课程

我的这个程序怎么不动的,哪里错了啊

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