首頁 >web前端 >js教程 >jQuery如何取得Select中option的Text值與Value值

jQuery如何取得Select中option的Text值與Value值

不言
不言原創
2018-08-15 10:48:334421瀏覽

這篇文章帶給大家的內容是關於jQuery如何取得Select中option的Text值和Value值,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。

取得一組radio被選取項目的值:

var item = $('input[name=items][checked]').val();

取得select被選取項目的文字

var item = $("select[@name=items] option[@selected]").text();

取得select被選取項目的文字:

var item = $("select[name=items] option[selected]").text(); 
或
$("select[name=items]").find("option:selected").text();

#select下拉方塊的第二個元素為目前選取值:

$('#select_id')[0].selectedIndex = 1;

select下拉方塊value = 'val'的元素為目前選取項目:

$("select[name=items] option[value='val']").attr("selected","selected");

radio單選組的第二個元素為目前選取項目:

$('input[@name=items]').get(1).checked = true;
或
$('input[name=items]').attr("checked", '1′);

radio的value = 'val'的元素為目前選取項目:

$('input[name=items] [value='val']').attr("checked","checked");

取得值:

文字方塊,文字區域:

$("#txt").attr("value");

多重選取框checkbox:

$("input[name='checkbox':checked]").each(function(){
var val = $(this).val();
});

單選群組radio:

$("input[type=radio][checked]").val();

下拉框select的value值:

$('select').val();

下拉框select選取的text 值:

$("select").find("option:selected").text();


# #控製表單元素:

文字方塊,文字區域:

$("#txt").attr("value","); //清空内容
$("#txt").attr("value",'11′); //填充内容

多選框checkbox:

checkbox的第二個元素被勾選:

$("input[name=items]").get(1).checked = true; //打勾
$("input[name=items]").get(1).checked = false; //不打勾

checkbox的value='val'的元素前打勾:

$("input[name=item][value='val']").attr("checked",true); 
或
$("input[name=item][value='val']").attr("checked","checked");
if($("input[name=item][value='val']").attr('checked')==true) //判断是否已经打勾

單選組radio:

$("input[type=radio]").attr("checked",'2′);//设置value=2的项目为当前选中项

下拉方塊select:

$("#sel").attr("value",'-sel3′);//设置value=-sel3的项目为当前选中项

$("<option value=&#39;1′>1111</option><option value=&#39;2′>2222</option>").appendTo("#sel")//添加下拉框的option
$("#sel").empty();//清空下拉框
jQuery取得Radio選擇的Value值
程式碼

$("input[name=&#39;radio_name&#39;][checked]").val(); //选择被选中Radio的Value值
$("#text_id").focus(function(){//code...}); //事件 当对象text_id获取焦点时触发
$("#text_id").blur(function(){//code...}); //事件 当对象text_id失去焦点时触发
$("#text_id").select(); //使文本框的Vlaue值成选中状态
$("input[name=&#39;radio_name&#39;][value=&#39;要选中Radio的Value值&#39;").
attr("checked",true); //根据Value值设置Radio为选中状态
jQuery取得CheckBox選擇的Value值

$("input[name=&#39;checkbox_name&#39;][checked]"); //选择被选中CheckBox元素的集合 如果你想得到

Value值你需要遍歷這個集合

### #
$($("input[name=&#39;checkbox_name&#39;][checked]")).
each(function(){arrChk+=this.value + &#39;,&#39;;});//遍历被选中CheckBox元素的集合 得到Value值
$("#checkbox_id").attr("checked"); //获取一个CheckBox的状态(有没有被选中,返回true/false)
$("#checkbox_id").attr("checked",true); //设置一个CheckBox的状态为选中(checked=true)
$("#checkbox_id").attr("checked",false); //设置一个CheckBox的状态为不选中(checked=false)
$("input[name=&#39;checkbox_name&#39;]").attr
("checked",$("#checkbox_id").attr("checked"));//根据3,4,5条,你可以分析分析这句代码的意思
$("#text_id").val().split(","); //将Text的Value值以&#39;,&#39;分隔 返回一个数组
###相關推薦:############jQuery PHP取得Select option 選擇的Text與Value(附選擇城市實例)############## ####select 中option 值在不同遊覽器的取值問題################jQuery PHP取得Select option 取捨的Text和Value(附選擇城市實例)### ###

以上是jQuery如何取得Select中option的Text值與Value值的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn