您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“jQuery如何操作radio、checkbox、select”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“jQuery如何操作radio、checkbox、select”這篇文章吧。
1、radio:單選框
HTML代碼:
<input type="radio" name="radio" id="radio1" value="1" />1
<input type="radio" name="radio" id="radio2" value="2" />2
<input type="radio" name="radio" id="radio3" value="3" />3
<input type="radio" name="radio" id="radio4" value="4" />4
js操作代碼:
// 判斷有沒有單選框被選中
jQuery("input[type='radio'][name='radio']:checked").length == 0 ? "沒有任何單選框被選中" : "已經(jīng)有選中";
// 獲取一組radio被選中項的值
jQuery('input[type="radio"][name="radio"]:checked').val();
// 設(shè)置value = 2的一項為選中
jQuery("input[type='radio'][name='radio'][value='2']").attr("checked", "checked");
// 設(shè)置id=radio2的一項為選中
jQuery("#radio2").attr("checked", "checked");
// 設(shè)置index = 1,即第二項為當(dāng)前選中
jQuery("input[type='radio'][name='radio']").get(1).checked = true;
// id=radio2的一項處于選中狀態(tài)則isChecked = true, 否則isChecked = false;
var isChecked = jQuery("#radio2").attr("checked");
// value=2的一項處于選中狀態(tài)則isChecked = true, 否則isChecked = false;
var isChecked = jQuery("input[type='radio'][name='radio'][value='2']").attr("checked");
2、checkbox:復(fù)選框
HTML代碼:
<input type="checkbox" name="checkbox" id="checkAll" />全選/取消全選
<input type="checkbox" name="checkbox" id="checkbox_id1" value="1" />1
<input type="checkbox" name="checkbox" id="checkbox_id2" value="2" />2
<input type="checkbox" name="checkbox" id="checkbox_id3" value="3" />3
<input type="checkbox" name="checkbox" id="checkbox_id4" value="4" />4
<input type="checkbox" name="checkbox" id="checkbox_id5" value="5" />5
js操作代碼:
// 獲取指定id的復(fù)選框的值
var val = jQuery("#checkbox_id1").val();
// 判斷id=checkbox_id3的那個復(fù)選框是否處于選中狀態(tài),
// 選中則isSelected=true;否則isSelected=false;
var isSelected = jQuery("#checkbox_id3").attr("checked");
jQuery("#checkbox_id3").attr("checked", true);// or
// 將id=checkbox_id3的那個復(fù)選框選中,即打勾
jQuery("#checkbox_id3").attr("checked", 'checked');
jQuery("#checkbox_id3").attr("checked", false);// or
// 將id=checkbox_id3的那個復(fù)選框不選中,即不打勾
jQuery("#checkbox_id3").attr("checked",'');
// 將name=checkbox, value=3 的那個復(fù)選框選中,即打勾
jQuery("input[name=checkbox][value=3]").attr("checked",'checked');
// 將name=checkbox, value=3 的那個復(fù)選框不選中,即不打勾
jQuery("input[name=checkbox][value=3]").attr("checked",'');
// 設(shè)置index = 2,即第三項為選中狀態(tài)
jQuery("input[type=checkbox][name=checkbox]").get(2).checked=true;
//由于復(fù)選框一般選中的是多個,所以可以循環(huán)輸出選中的值
jQuery("input[type=checkbox]:checked").each(function(){alert(jQuery(this).val()); });
// 全選/取消全選
jQuery(function() {
jQuery("#checkAll").click(function(){
if(jQuery(this).attr("checked") == true){// 全選
jQuery("input[type=checkbox][name=checkbox]").each(function(){
jQuery(this).attr("checked", true);
});
} else {// 取消全選
jQuery("input[type=checkbox][name=checkbox]").each(function(){
jQuery(this).attr("checked", false);
});
}
});
});
3、select:下拉框
HTML代碼:
<select name="select" id="select_id" >
<option value="1">11</option>
<option value="2">22</option>
<option value="3">33</option>
<option value="4">44</option>
<option value="5">55</option>
<option value="6">66</option>
</select>
js操作代碼:
// 為Select添加事件,當(dāng)選擇其中一項時觸發(fā)
jQuery("#select_id").change(function(){});
// 獲取Select選中項的Value
var checkValue = jQuery("#select_id").val();
// 獲取Select選中項的Text
var checkText = jQuery("#select_id :selected").text();
// 獲取Select選中項的索引值
var checkIndex = jQuery("#select_id").attr("selectedIndex");
// or
jQuery("#select_id").get(0).selectedIndex;
// 5.獲取Select最大的索引值
var maxIndex = jQuery("#select_id :last").attr("index");
// or
jQuery("#select_id :last").get(0).index;
// jQuery設(shè)置Select的選中項
// 設(shè)置Select索引值為1的項選中
jQuery("#select_id").get(0).selectedIndex = 1;
// 設(shè)置Select的Value值為4的項選中
jQuery("#select_id").val(4);
// jQuery添加/刪除Select的Option項
// 為Select追加一個Option(下拉項)
jQuery("#select_id").append("<option value='新增'>新增option</option>");
// 為Select插入一個Option(第一個位置)
jQuery("#select_id").prepend("<option value='請選擇'>請選擇</option>");
// 刪除Select中索引值為1的Option(第二個)
jQuery("#select_id").get(0).remove(1);
// 刪除Select中索引值最大Option(最后一個)
jQuery("#select_id :last").remove();
// 刪除Select中Value='3'的Option
jQuery("#select_id [value='3']").remove();
// 清空下拉列表 jQuery("#select_id").empty();
以上是“jQuery如何操作radio、checkbox、select”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。