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

实在是看不出哪里出错了,指点一下

<!DOCTYPE html>

<html>

    <head>

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

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

           

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

        <style type="text/css">

            div{

                 width:40px;

                 height:40px;

                 margin:10px;

                 left:40px;

                 border:2px solid;

                 background:gray;

                 position:absolute;

                }

           

        </style>

    </head>

    

    <body>

    

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

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

       <div></div>

       <span></span>

     <script type="test/javascript">

          $(function(){

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

                  $("div").animate({

                      left:"+=10px"

                  },1000,function(){

                    $("span").html("左移了");  

            

                  });

              });

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

                 $("div").animate({

                     left:"-=10px"

                 },1000,function(){

                   $("span").html("右移了");  

                 });

             });

          

          } );

       </script>

    </body>

</html>


正在回答

2 回答

你自己写的jQuery引入时<script type="test/javascript">   type应该是text。目测是写test些顺手了23333~~有过相似经历(捂脸……)没事就省了写type吧。。减少出错几率~\(^o^)/~

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

改了,终于可以了。想哭啊

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

举报

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

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

进入课程

实在是看不出哪里出错了,指点一下

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