一 梯醒、Select
jQuery獲取Select選擇的Text和Value:
1. $("#select_id").change(function(){//code...}); //為Select添加事件儿子,當選擇其中一項時觸發(fā)
2. var checkText=$("#select_id").find("option:selected").text(); //獲取Select選擇的Text
3. var checkValue=$("#select_id").val(); //獲取Select選擇的Value
4. var checkIndex=$("#select_id ").get(0).selectedIndex; //獲取Select選擇的索引值
5. var maxIndex=$("#select_id option:last").attr("index"); //獲取Select最大的索引值
jQuery設置Select選擇的Text和Value:
1. $("#select_id ").get(0).selectedIndex=1; //設置Select索引值為1的項選中
2. $("#select_id ").val(4); //設置Select的Value值為4的項選中
3. $("#select_id option[text='jQuery']").attr("selected", true); //設置Select的Text值為jQuery的項選中
jQuery添加/刪除Select的Option項:
1. $("#select_id").append("Text"); //為Select追加一個Option(下拉項)
2. $("#select_id").prepend("請選擇"); //為Select插入一個Option(第一個位置)
3. $("#select_id option:last").remove(); //刪除Select中索引值最大Option(最后一個)
4. $("#select_id option[index='0']").remove(); //刪除Select中索引值為0的Option(第一個)
5. $("#select_id option[value='3']").remove(); //刪除Select中Value='3'的Option
6. $("#select_id option[text='4']").remove(); //刪除Select中Text='4'的Option
7. $("#SelectID").remove(); //刪除所有項
二、Checkbox
全選/取消
jQuery.attr 獲取/設置對象的屬性值,如:
$("input[name='chk_list']").attr("checked"); //讀取所有name為'chk_list'對象的狀態(tài)(是否選中)
$("input[name='chk_list']").attr("checked",true); //設置所有name為'chk_list'對象的checked為true
$("#img_1").attr("src","test.jpg"); //設置ID為img_1的
src的值為'test.jpg'
$("#img_1").attr("src"); //讀取ID為img_1的
src值
下面的代碼是獲取上面實例中選中的checkbox的value值:
$(document).ready(function() {
var arrChk=$("input[name='chk_list'][checked]");
$(arrChk).each(function(){
window.alert(this.value);
});
});
1,獲取checkbox的value
$("#checkboxID").value或$("input[type='checkbox']").eq(n).attr("checked").value
2,設置選中項
$("input[type='checkbox']").eq(1).attr("checked")//設置第一個checkbox為選中的項
3,刪除所有checkbox
$("input[type='checkbox']").remove()
4,checkbox方法
$(document).ready(function() {
var check = $("input[type='checkbox']");
check.each(function(n) {
check.eq(n).bind("click", function() {
if (check.eq(n).attr("checked") != false) {
var value = check.eq(n).val();
alert(value);
}
else {
alert(check.eq(n).attr("checked"));
}
})
});
});
三酗电、radio
1,獲取選中的value值
$("input[type='radio']:checked").val();
2,設置指定的項為當前選中項
$("input[type='radio']").eq(1).attr("checked", true);//設置第二項為選中項
$("input[type='radio'][value='值']").attr("checked, true");
3,解決多個Radio
$("input[type='radio'][@name='rdoTest2']").eq(0).attr("checked", true);