为啥我把代码改成这样就执行不了,对比了半天,实在看不出问题

来源:1-2 jQuery中隐藏元素的hide方法

洋葱_dot

2017-05-17 23:06

<h4>测试一</h4>

        <div id="right">hide动画操作</div>

        <button id="btn">hide带动画</button>

        <script type="text/javascript">

        //点击buttom2 执行动画隐藏

        $("#btn").click(function() {

            $("#right").hide(3000,function(){

                //$('h4').css({'color':'red'});

                alert('sjfjshg')

            )};

                

            

        });

        


写回答 关注

3回答

  • 收获季节
    2017-09-16 22:20:51

    <div class="left">

          <h4>测试一</h4>

            <div id="right">hide动画操作</div>

            <button id="btn">hide带动画</button>

            <script type="text/javascript">

            //点击buttom2 执行动画隐藏

            $("#btn").click(function(){

                $("#right").hide(3000,function(){

                    alert('sjfjshg')

                })   //注意两个括号的顺序

            }) 

      </script>   //注意标签的闭合

     </div>


  • qq_细雨听荷_0
    2017-06-08 10:23:43

    http://img.mukewang.com/5938b4e70001666503410273.jpg

    这个括号写错了~~应该是 })

  • 清风流光
    2017-05-18 05:13:36
    <h4>测试一</h4>
            <div id="right">hide动画操作</div>
            <button id="btn">hide带动画</button>
            <script type="text/javascript">
            //点击buttom2 执行动画隐藏
            $("#btn").click(function() {
            	$("#right").hide(3000,function(){
            		 alert('sjfjshg')
            	})
            })


jQuery基础(四)—动画篇

jQuery基础教程动画篇,讲解jQuery基础开启动画修炼

85049 学习 · 262 问题

查看课程

相似问题