jQuery中使用attribute,prop擷取,設定input的checked值【轉】

來源:互聯網
上載者:User

標籤:lan   inpu   原因   target   min   設定   ret   方法   tle   

1、prop方法擷取、設定checked屬性

當input控制項checkbox設定了checked屬性時,無論checked=”“或 
checked=”checked”,$(obj).prop(“checked”)的結果都是true; 
當input控制項checkbox沒設定checked屬性時,$(obj).prop(“checked”)的結果是false。 
設定$(“input[name=’checkboxall’]”).prop(“checked”, true)時,checkbox會被選中; 
設定$(“input[name=’checkboxall’]”).prop(“checked”, false)時,checkbox不會被選中;

2、attr方法擷取、設定checked屬性

<input type="checkbox" id="selectAll" onclick="checkAll()" >全選 
如果當前input中初始化未定義checked屬性,則不管當前是否選中,$(“#selectAll”).attr(“checked”)都會返回undefined; 
<input type="checkbox" id="selectAll" checked="" onclick="checkAll()" >全選 
<input type="checkbox" id="selectAll" checked="checked" 
onclick="checkAll()" >
全選 
如果當前input中初始化定義了checked屬性,無論checked=”“或 
checked=”checked”,當前checkbox都處於選中狀態, 
$(“#selectAll”).attr(“checked”)都會返回”checked”;

3、總結

在jquery中應該使用prop方法來擷取和設定checked屬性,不應該使用attr.

4、jquery版本原因

jquery-1.4.1.min.js、jquery-1.4.2.min.js可以用attr方法正確地擷取或設定checkbox的checked屬性,但是高版本例如:1.10.2.min.js就不能用attr方法正確地擷取或設定checkbox的checked屬性,在此聲明:其他版本沒有測試。

jQuery中使用attribute,prop擷取,設定input的checked值【轉】

聯繫我們

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