jquery操作select(增加,删除,清空)
1. $("#select_id").change(function(){//code...}); //爲Select添加事件,當選擇其中(zhōng)一(yī)項時觸發
2. var checkText=$("#select_id").find("option:selected").text(); //獲取Select選擇的
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最大(dà)的索引值
jQuery添加/删除Select的Option項:
1. $("#select_id").append("<option value='Value'>Text</option>"); //爲Select追加一(yī)個Option(下(xià)拉項)
2. $("#select_id").prepend("<option value='0'>請選擇</option>"); //爲Select插入一(yī)個Option(第一(yī)個位置)
3. $("#select_id option:last").remove(); //删除Select中(zhōng)索引值最大(dà)Option(最後一(yī)個)
4. $("#select_id option[index='0']").remove(); //删除Select中(zhōng)索引值爲0的Option(第一(yī)個)
5. $("#select_id option[value='3']").remove(); //删除Select中(zhōng)Value='3'的Optiona
5. $("#select_id option[text='4']").remove(); //删除Select中(zhōng)Text='4'的Optiona
内容清空:$("#charCity").empty();
jQuery獲取Select選擇的Text和Value:
$("#select_id").change(function(){//code...}); //爲Select添加事件,當選擇其中(zhōng)一(yī)項時觸發
var checkText=$("#select_id").find("option:selected").text(); //獲取Select選擇的text
var checkValue=$("#select_id").val(); //獲取Select選擇的Value
var checkIndex=$("#select_id ").get(0).selectedIndex; //獲取Select選擇的索引值
var maxIndex=$("#select_id option:last").attr("index"); //獲取Select最大(dà)的索引值
比如<select class="selector"></select>
1、設置value爲pxx的項選中(zhōng)
$(".selector").val("pxx");
2、設置text爲pxx的項選中(zhōng)
$(".selector").find("option[text='pxx']").attr("selected",true);
這裏有一(yī)個中(zhōng)括号的用法,中(zhōng)括号裏的等号的前面是屬性名稱,不用加引号。很多時候,中(zhōng)括号的運用可以使得邏輯變得很簡單。
3、獲取當前選中(zhōng)項的value
$(".selector").val();
4、獲取當前選中(zhōng)項的text
$(".selector").find("option:selected").text();
這裏用到了冒号,掌握它的用法并舉一(yī)反三也會讓代碼變得簡潔。
很多時候用到select的級聯,即第二個select的值随着第一(yī)個select選中(zhōng)的值變化。這在jquery中(zhōng)是非常簡單的。
如:
$(".selector1").change(function(){
// 先清空第二個
$(".selector2").empty();
// 實際的應用中(zhōng),這裏的option一(yī)般都是用循環生(shēng)成多個了
var option = $("<option>").val(1).text("pxx");
$(".selector2").append(option);
});
jQuery獲取Select選擇的Text和Value:
語法解釋:
$("#select_id").change(function(){//code...}); //爲Select添加事件,當選擇其中(zhōng)一(yī)項時觸發
var checkText=$("#select_id").find("option:selected").text(); //獲取Select選擇的Text
var checkValue=$("#select_id").val(); //獲取Select選擇的Value
var checkIndex=$("#select_id ").get(0).selectedIndex; //獲取Select選擇的索引值
var maxIndex=$("#select_id option:last").attr("index"); //獲取Select最大(dà)的索引值
jQuery設置Select選擇的 Text和Value:
語法解釋:
$("#select_id ").get(0).selectedIndex=1; //設置Select索引值爲1的項選中(zhōng)
$("#select_id ").val(4); // 設置Select的Value值爲4的項選中(zhōng)
$("#select_id option[text='jQuery']").attr("selected", true); //設置Select的Text值爲jQuery的項選中(zhōng)
jQuery添加/删除Select的Option項:
語法解釋:
$("#select_id").append("<option value='Value'>Text</option>"); //爲Select追加一(yī)個Option(下(xià)拉項)
$("#select_id").prepend("<option value='0'>請選擇</option>"); //爲Select插入一(yī)個Option(第一(yī)個位置)
$("#select_id option:last").remove(); //删除Select中(zhōng)索引值最大(dà)Option(最後一(yī)個)
$("#select_id option[index='0']").remove(); //删除Select中(zhōng)索引值爲0的Option(第一(yī)個)
$("#select_id option[value='3']").remove(); //删除Select中(zhōng)Value='3'的Option
$("#select_id option[text='4']").remove(); //删除Select中(zhōng)Text='4'的Option
jquery radio取值,checkbox取值,select取值,radio選中(zhōng),checkbox選中(zhōng),select選中(zhōng),及其相關
獲 取一(yī)組radio被選中(zhōng)項的值
var item = $('input[name=items][checked]').val();
獲 取select被選中(zhōng)項的文本
var item = $("select[name=items] option[selected]").text();
select下(xià)拉框的第二個元素爲當前選中(zhōng)值
$('#select_id')[0].selectedIndex = 1;
radio單選組的第二個元素爲當前選中(zhōng)值
$('input[name=items]').get(1).checked = true;
獲取值:
文本框,文本區域:$("#txt").attr("value");
多選框 checkbox:$("#checkbox_id").attr("value");
單選組radio: $("input[type=radio][checked]").val();
下(xià)拉框select: $('#sel').val();
控制表單元素:
文本框,文本區域:$("#txt").attr("value",'');//清空内容
$("#txt").attr("value",'11');//填充内容
多選框checkbox: $("#chk1").attr("checked",'');//不打勾
$("#chk2").attr("checked",true);//打勾
if($("#chk1").attr('checked')==undefined) //判斷是否已經打勾
單選組 radio: $("input[type=radio]").attr("checked",'2');//設置value=2的項目爲當前選中(zhōng)項
下(xià)拉框 select: $("#sel").attr("value",'-sel3');//設置value=-sel3的項目爲當前選中(zhōng)項
$("<option value='1'>1111</option><option value='2'>2222</option>").appendTo("#sel")//添加下(xià)拉框的option
$("#sel").empty();//清空下(xià)拉框
1. $("#select_id").change(function(){//code...}); //爲Select添加事件,當選擇其中(zhōng)一(yī)項時觸發
2. var checkText=$("#select_id").find("option:selected").text(); //獲取Select選擇的
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最大(dà)的索引值
jQuery添加/删除Select的Option項:
1. $("#select_id").append("<option value='Value'>Text</option>"); //爲Select追加一(yī)個Option(下(xià)拉項)
2. $("#select_id").prepend("<option value='0'>請選擇</option>"); //爲Select插入一(yī)個Option(第一(yī)個位置)
3. $("#select_id option:last").remove(); //删除Select中(zhōng)索引值最大(dà)Option(最後一(yī)個)
4. $("#select_id option[index='0']").remove(); //删除Select中(zhōng)索引值爲0的Option(第一(yī)個)
5. $("#select_id option[value='3']").remove(); //删除Select中(zhōng)Value='3'的Optiona
5. $("#select_id option[text='4']").remove(); //删除Select中(zhōng)Text='4'的Optiona
内容清空:$("#charCity").empty();
jQuery獲取Select選擇的Text和Value:
$("#select_id").change(function(){//code...}); //爲Select添加事件,當選擇其中(zhōng)一(yī)項時觸發
var checkText=$("#select_id").find("option:selected").text(); //獲取Select選擇的text
var checkValue=$("#select_id").val(); //獲取Select選擇的Value
var checkIndex=$("#select_id ").get(0).selectedIndex; //獲取Select選擇的索引值
var maxIndex=$("#select_id option:last").attr("index"); //獲取Select最大(dà)的索引值
比如<select class="selector"></select>
1、設置value爲pxx的項選中(zhōng)
$(".selector").val("pxx");
2、設置text爲pxx的項選中(zhōng)
$(".selector").find("option[text='pxx']").attr("selected",true);
這裏有一(yī)個中(zhōng)括号的用法,中(zhōng)括号裏的等号的前面是屬性名稱,不用加引号。很多時候,中(zhōng)括号的運用可以使得邏輯變得很簡單。
3、獲取當前選中(zhōng)項的value
$(".selector").val();
4、獲取當前選中(zhōng)項的text
$(".selector").find("option:selected").text();
這裏用到了冒号,掌握它的用法并舉一(yī)反三也會讓代碼變得簡潔。
很多時候用到select的級聯,即第二個select的值随着第一(yī)個select選中(zhōng)的值變化。這在jquery中(zhōng)是非常簡單的。
如:
$(".selector1").change(function(){
// 先清空第二個
$(".selector2").empty();
// 實際的應用中(zhōng),這裏的option一(yī)般都是用循環生(shēng)成多個了
var option = $("<option>").val(1).text("pxx");
$(".selector2").append(option);
});
jQuery獲取Select選擇的Text和Value:
語法解釋:
$("#select_id").change(function(){//code...}); //爲Select添加事件,當選擇其中(zhōng)一(yī)項時觸發
var checkText=$("#select_id").find("option:selected").text(); //獲取Select選擇的Text
var checkValue=$("#select_id").val(); //獲取Select選擇的Value
var checkIndex=$("#select_id ").get(0).selectedIndex; //獲取Select選擇的索引值
var maxIndex=$("#select_id option:last").attr("index"); //獲取Select最大(dà)的索引值
jQuery設置Select選擇的 Text和Value:
語法解釋:
$("#select_id ").get(0).selectedIndex=1; //設置Select索引值爲1的項選中(zhōng)
$("#select_id ").val(4); // 設置Select的Value值爲4的項選中(zhōng)
$("#select_id option[text='jQuery']").attr("selected", true); //設置Select的Text值爲jQuery的項選中(zhōng)
jQuery添加/删除Select的Option項:
語法解釋:
$("#select_id").append("<option value='Value'>Text</option>"); //爲Select追加一(yī)個Option(下(xià)拉項)
$("#select_id").prepend("<option value='0'>請選擇</option>"); //爲Select插入一(yī)個Option(第一(yī)個位置)
$("#select_id option:last").remove(); //删除Select中(zhōng)索引值最大(dà)Option(最後一(yī)個)
$("#select_id option[index='0']").remove(); //删除Select中(zhōng)索引值爲0的Option(第一(yī)個)
$("#select_id option[value='3']").remove(); //删除Select中(zhōng)Value='3'的Option
$("#select_id option[text='4']").remove(); //删除Select中(zhōng)Text='4'的Option
jquery radio取值,checkbox取值,select取值,radio選中(zhōng),checkbox選中(zhōng),select選中(zhōng),及其相關
獲 取一(yī)組radio被選中(zhōng)項的值
var item = $('input[name=items][checked]').val();
獲 取select被選中(zhōng)項的文本
var item = $("select[name=items] option[selected]").text();
select下(xià)拉框的第二個元素爲當前選中(zhōng)值
$('#select_id')[0].selectedIndex = 1;
radio單選組的第二個元素爲當前選中(zhōng)值
$('input[name=items]').get(1).checked = true;
獲取值:
文本框,文本區域:$("#txt").attr("value");
多選框 checkbox:$("#checkbox_id").attr("value");
單選組radio: $("input[type=radio][checked]").val();
下(xià)拉框select: $('#sel').val();
控制表單元素:
文本框,文本區域:$("#txt").attr("value",'');//清空内容
$("#txt").attr("value",'11');//填充内容
多選框checkbox: $("#chk1").attr("checked",'');//不打勾
$("#chk2").attr("checked",true);//打勾
if($("#chk1").attr('checked')==undefined) //判斷是否已經打勾
單選組 radio: $("input[type=radio]").attr("checked",'2');//設置value=2的項目爲當前選中(zhōng)項
下(xià)拉框 select: $("#sel").attr("value",'-sel3');//設置value=-sel3的項目爲當前選中(zhōng)項
$("<option value='1'>1111</option><option value='2'>2222</option>").appendTo("#sel")//添加下(xià)拉框的option
$("#sel").empty();//清空下(xià)拉框