js學習總結----jQuery之動畫 ajax 事件

來源:互聯網
上載者:User

標籤:ini   lin   cti   animate   near   運動   duration   .ajax   rand   

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Document</title></head><body>    <script>        //ajax        $.ajax({            url:‘json/test.txt?_=‘+Math.random(),            type:"get",            dataType:‘json‘,//"text"、"html"、"jsonp"            success:function(data){            }        })        //事件        var $box = $("#box")        $box.on(‘click‘,function(){            console.log(1)//this:當前元素(JS原生對象) $(this)        })        $box.on(‘click‘,function(){            console.log(2)        })        $box.on(‘mouseout‘,function(){            console.log(3)        })        //工具        //each:jQuery中有兩個each(也有兩個map,和each的原理一樣,只是可以支援傳回值)        //迴圈選取器擷取到的jQuery集合中的每一項        $(‘div‘).each(function(index,value){        })        //迴圈數組、類數組、對象中的每一項        $.each([12,23,34],function(index,value){        })        //$.makeArray ===>相當於listToArray        //動畫        //$(‘#box‘).animate({left:xxx,top:xxx,...},duration,"linear/swing",function(){})        //stop:結束之前正在啟動並執行動畫,開啟下一個新的動畫(結束上一個動畫,下一個動畫是緊接著當前位置開始運動的)        //delay:延遲        //finish:結束上一個動畫並且讓元素快速的到達目標位置,在開始下一個動畫        /*            fadeIn(淡入) fadeOut(淡出) fadeToggle            show hide toggle            slideUp slideDown slideToggle        */    </script></body></html>

 

js學習總結----jQuery之動畫 ajax 事件

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.