jquery中html、text、val回呼函數

來源:互聯網
上載者:User

標籤:meta   div   執行   對象   head   教程   script   元素   接下來   

先掃盲:

  摘自菜鳥教程:jQuery 方法:text()、html() 以及 val()擁有回呼函數。

      回呼函數有兩個參數:被選元素列表中當前元素的下標,以及原始(舊的)值。然後以函數新值返回您希望使用的字串

再上代碼:

<!doctype html><html lang="en"><head>    <meta charset="UTF-8"></head><body>    <ul>        <li>demo</li>        <li>demo</li>        <li>demo</li>        <li>demo</li>    </ul></body><script src="jquery-1.12.4.min.js"></script><script>    $("li").click(function () {        $(this).html(function(i,originTex){            return (originTex+i);        })    })</script></html>

很奇怪,當點擊元素"li"時總是在舊文本後追加下標0,與預期不一樣。

再看接下來代碼:

<!doctype html><html lang="en"><head>    <meta charset="UTF-8"></head><body>    <ul>        <li>demo</li>        <li>demo</li>        <li>demo</li>        <li>demo</li>    </ul></body><script src="jquery-1.12.4.min.js"></script><script>//    $("li").click(function () {//        $(this).html(function(i,originTex){//            return (originTex+i);//        })//    })    $(document).click(function(){        $("li").html(function(i,originTxt){            $(this).html(originTxt+i);        })    })</script></html>

改變事件來源,期待的結果出現了。

【代碼解析】

                第一種情況觸發事件的是當前觸發點擊事件的li元素,$(this)指向它,只有一個元素,所以其下標一直是0;

                第二種情況僅僅是通過document這個對象觸發事件,進而執行的是一個典型的遍曆賦值動作,這個不多做解釋。

 

jquery中html、text、val回呼函數

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.