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

为什么移动不了

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

            div{

                width:80px;

                height:80px;

                border:1px solid red;

                background-color:red;

                position:absolute;

                left:10px;

                top:30px;

                }

        </style>

    </head>

    

    <body>

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

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

        <div></div>

        <script type="text/javascript">

        $(function(){

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

                    $("div").animate({

                    left:"-=50px";

                },3000)

            });

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

                    $("div").animate({

                    left:"+=50px";

                },3000)

            });

        });

            

            

        </script>

    </body>

</html>


正在回答

3 回答

<!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>
            div{
                width:80px;
                height:80px;
                border:1px solid red;
                background-color:red;
                position:absolute;
                left:10px;
                top:30px;
                }
        </style>
    </head>
    
    <body>
        <input type="button" value="左移" id="btn1"/>
        <input type="button" value="右移" id="btn2"/>
        <div></div>
    <script type="text/javascript">
        $(function(){
            $("#btn1").bind("click",function(){
                $("div").animate({
                    left:"-=50px" //你的代码这里多加了分号“;”,语法错误,运行失败
                },3000)
            });
            $("#btn2").bind("click",function(){
                $("div").animate({
                    left:"+=50px" //你的代码这里多加了分号“;”,语法错误,运行失败
                },3000)
            });
        });
    </script>
    </body>
</html>

你的代码有个语法错误,我在注释里说明了。可以直接复制代码去运行。

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

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

            div{

                width:80px;

                height:80px;

                border:1px solid red;

                background-color:red;

                position:absolute;

                left:10px;

                top:30px;

                }

        </style>

    </head>

    

    <body>

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

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

        <div></div>

        <script type="text/javascript">

        $(function(){

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

                    $("div").animate({

                    left:"+=50px";

                },3000)

            });

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

                    $("div").animate({

                    left:"-=50px";

                },3000)

            });

        });

            

            

        </script>

    </body>

</html>

这样也没有效果

0 回复 有任何疑惑可以回复我~
$(function(){
    $("#btn1").bind("click",function(){
        $("div").animate({
            left:"-=50px"  //这里不能加 ;
        },3000)
    });
    $("#btn2").bind("click",function(){
        $("div").animate({
            left:"+=50px"  //这里不能加 ;
        },3000)
    });
});


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

举报

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

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

进入课程

为什么移动不了

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