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

帮我看看那里错了,怎么么有效果啊

<!DOCTYPE html>

<html>

    <head>

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

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

        <style>

            div{width:100px;

                height:100px;

                background:red;

                position:absolute;

                }

        </style>

        <script>

            $(function(){

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

                    $("div").animate({left:"+=50px"},300)

                });

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

                    $("div").animate({left:"-=50px"},300)

                });

            })

        </script>

    </head>

    

    <body>

    <input id="btn1" type="button" value="向左"/>

    <input id="btn2" type="button" value="向右"/>

    <div></div>

        

    </body>

</html>


正在回答

1 回答

没有调用jQuery库,<head></head>里加:

<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>


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

举报

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

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

进入课程

帮我看看那里错了,怎么么有效果啊

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