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

不明白为什么左移不了

<!DOCTYPE html>

<html>

  <style type="text/css">

div

{

    margin: 10px 0px;

}

span

{

    position:absolute;

    width:80px;

    height:80px;

    border: solid 4px #ccc;

    margin: 50px 50px;

    background-color: Red;

    color:White;

    vertical-align:middle

}

</style>

    <head>

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

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

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

</

    </head>

          

    <body>

        <h3>创建按钮播放动画</h3>

        <span></span>

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

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

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

        <script type="text/javaScript">

        

        $(function(){

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

            

            $("span").animate({

              left:"-=50px"  

                

            },100,function () {

                 $("#tip").html("执行完成!");

            })

             })

            });

       

        

        </script>

    </body>

</html>


正在回答

1 回答

<!DOCTYPE html>
<html>
<style type="text/css">
    div
    {
        margin: 10px 0px;
    }
    span
    {
        position:absolute;
        width:80px;
        height:80px;
        border: solid 4px #ccc;
        margin: 50px 50px;
        background-color: Red;
        color:White;
        vertical-align:middle
    }
</style>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>jQuery动画特效</title>
    <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
</head>

<body>
<h3>创建按钮播放动画</h3>
<span></span>
<div id="tip"> </div>
<input id="left" type="button" value="左移"></br>
<input id="right" type="button" value="右移">
<script type="text/javaScript">

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

            $("span").animate({
                left:"-=50px"

            },100,function () {
                $("#tip").html("执行完成!");
            })
        })
    });


</script>
</body>
</html>

24行上面多了一个 </     

30行 id="left"  的等号是中文的

35行 $("#left")   id选择器要加 #


以上行数对应我的代码

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

举报

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

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

进入课程

不明白为什么左移不了

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