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

为什么button只有第一次按有效果,若想重复使用该怎么改

<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>jQuery动画特效</title>
        <style>
            #div{
                width:100px;
                height:100px;
                background-color:red;
                margin:0 auto;
                }
        </style>
        <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
    </head>
    
    <body>
        <div id="div"></div>
        <button id="btn1" type="button">
            向左
        </button>
        <button id="btn2" type="button">
            向右
        </button>
        <script>
            $(function(){
                $("#btn1").click(function(){
                    $("#div").animate({
                        right:"+=200px"
                    },3000)
                })
                })
            $(function(){
                $("#btn2").click(function(){
                    $("#div").animate({
                        left:"+=200px"
                    },3000)
                })
            })
        </script>
    </body>
</html>


正在回答

2 回答

$(function(){  
                $("#btn2").click(function(){
                    $("#div").animate({
                        left:"+=200px"
                    },3000)
                })
            $(function(){
                $("#btn1").click(function(){
                    $("#div").animate({
                       left:"-=200px"
                    },3000)
                })
                }) 
            })

我把代码改成这样就好了,但还不是很清楚为什么,希望有人帮忙解答一下

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

而且我要是先按“向左”的按钮“向右”的按钮随后也可以用,但如果先按”向右“的按钮”向左“按钮就没效果咯

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

举报

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

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

进入课程

为什么button只有第一次按有效果,若想重复使用该怎么改

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