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

哪里有错,为什么没反应?

<!DOCTYPE html>

<html>

    <head>

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

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

    </head>

   

    <body>

     <div id="div1">春季补水节</div>

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

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

      <div id="tip"></div>

    </body>

    <script type="text/javascript">

    $(function(){

        $("#div1").css({"position":"absolute"});

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

            $("#div1").animate({

                left:"-=50px"

            },3000,function(){

                $("#tip").html("左移完成");

            });

        });

        

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

            $("#div1").animate({

                left:"+=50px"

            },3000,function(){

                $("#tip").html("右移完成");

            });

        });

        

        });

    

    </script>

</html>


正在回答

3 回答

兄弟你是不是没有引入jQuery啊

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

zhouhuan521 提问者

非常感谢!
2016-03-10 回复 有任何疑惑可以回复我~

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

试试在head中加入这段,我加了之后能出效果了

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

zhouhuan521 提问者

谢谢了
2016-03-10 回复 有任何疑惑可以回复我~

 <script>

    $(function(){

        $("#div1").css({"position":"absolute"});

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

            $("#div1").animate({

                left:"-=50px"

            },3000,function(){

                $("#tip").html("左移完成");
             
            })

        });

        

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

            $("#div1").animate({

                left:"+=50px"

            },3000,function(){

                $("#tip").html("右移完成");

            })

        });  

        });

    </script>

有些地方有点小问题,但是我的代码也是不能出效果,抱歉

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

举报

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

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

进入课程

哪里有错,为什么没反应?

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