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

请问哪儿错了,两种方式都不行

为啥执行不出来啊,是不是哪个细节没注意到

正在回答

2 回答

第二个右移次数的ID选择器哪

$(#span2).html("右移"+righttime+"次")})

少了一对双引号!

$("#span2").html("右移"+righttime+"次")})

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

<!DOCTYPE html>

<html>

    <head>

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

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

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

        <style>

            div{

            width:90px;

            height:50px;

               border-width:1px;

               border-color:#f00;

               border-style:solid;

               margin-left:100px;

               margin-top:20px;

               text-align:center;

                position:absolute;}

        </style>

        <script type="text/javascript">

        var lefttime=0;

        var righttime=0;

        //     function moveleft()

        //     {

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

        //      lefttime++;

        //      $("#span1").html("左移"+lefttime+"次");

        //     }

            

        //     function moveright()

        //     {

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

        //      righttime++;

        //      $("#span2").html("右移"+righttime+"次");

        //     }

       $(function(){

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

               $("div").animate({left:"-=50px"},3000,function(){lefttime++;

            $("#span1").html("左移"+lefttime+"次")})

           })

           

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

               $("div").animate({left:"+=50px"},3000,function(){righttime++;

        $(#span2).html("右移"+righttime+"次")})

           })

       })

        </script>

    </head>

    

    <body>

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

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

    onclick="moveright">

    <div>

        <span id="span1">左移次数</span> <br />

        <span id="span2">右移次数</span>

    </div>

    </body>

</html>


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

举报

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

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

进入课程

请问哪儿错了,两种方式都不行

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