首頁 > web前端 > js教程 > 主體

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

不言
發布: 2018-08-15 10:48:33
原創
4392 人瀏覽過

這篇文章帶給大家的內容是關於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的项目为当前选中项
登入後複製

jQuery取得Radio選擇的Value值
程式碼

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

$("input[name='checkbox_name'][checked]"); //选择被选中CheckBox元素的集合 如果你想得到
登入後複製

Value值你需要遍歷這個集合

### #
$($("input[name='checkbox_name'][checked]")).
each(function(){arrChk+=this.value + ',';});//遍历被选中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='checkbox_name']").attr
("checked",$("#checkbox_id").attr("checked"));//根据3,4,5条,你可以分析分析这句代码的意思
$("#text_id").val().split(","); //将Text的Value值以','分隔 返回一个数组
登入後複製
###相關推薦:############jQuery PHP取得Select option 選擇的Text與Value(附選擇城市實例)############## ####select 中option 值在不同遊覽器的取值問題################jQuery PHP取得Select option 取捨的Text和Value(附選擇城市實例)### ###

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

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板