溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

JavaScript或jQuery如何獲取option value值

發(fā)布時間:2020-07-28 09:18:20 來源:億速云 閱讀:363 作者:小豬 欄目:web開發(fā)

小編這次要給大家分享的是JavaScript或jQuery如何獲取option value值,文章內(nèi)容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。

1.html

<div class="form-group">
        <label>保險(xiǎn)公司</label>
        <select class="form-control" id="testSelect">
          <option value="平安">平安保險(xiǎn)</option>
          <option value="太平洋">太平洋保險(xiǎn)</option>
          <option value="平安">平安保險(xiǎn)</option>
        </select>
    </div>

2.用JavaScript獲取option 的值以及文本內(nèi)容

/*JavaScript實(shí)現(xiàn)*/
      var testSelect = document.getElementById("testSelect");
      testSelect.onchange = function() { //當(dāng)選項(xiàng)改變時觸發(fā)
        var valOption = this.options[this.selectedIndex].value; //獲取option的value
         alert(valOption);
        var txtOption = this.options[this.selectedIndex].innerHTML; //獲取option中間的文本
         alert(txtOption);
      }

實(shí)現(xiàn)效果:

JavaScript或jQuery如何獲取option value值

JavaScript或jQuery如何獲取option value值

達(dá)到了我們想要的效果

3.用jQuery獲取option 的值以及文本內(nèi)容(要引入jQuery庫)

/*用jQuery實(shí)現(xiàn)*/
      var oSelect = $("#testSelect");
      oSelect.on('change',function(){
        var checkText=$("#testSelect").find("option:selected").text(); //獲取Select選擇的Text 
        var checkValue=$("#testSelect").val();
        console.log(checkText +"~~~~"+ checkValue);
      });

運(yùn)行效果:

當(dāng)我任意選擇一個option選項(xiàng)的時候 觸發(fā)了change方法

JavaScript或jQuery如何獲取option value值

4.全部代碼:

<!DOCTYPE html>
<html>

  <head>
    <meta charset="UTF-8">
    <title>Insert title here</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
    <script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
    <link rel="stylesheet" href="css/bootstrap.min.css" rel="external nofollow" />
    <script type="text/javascript" src="js/bootstrap.min.js"></script>
    <style type="text/css">
      div{
        width: 400px;
        margin: 100px;
      }
    </style>
  </head>

  <body>
    <div class="form-group">
        <label>保險(xiǎn)公司</label>
        <select class="form-control" id="testSelect">
          <option value="平安">平安保險(xiǎn)</option>
          <option value="太平洋">太平洋保險(xiǎn)</option>
          <option value="平安">平安保險(xiǎn)</option>
        </select>
    </div>
    <script type="text/javascript">
      /*JavaScript實(shí)現(xiàn)*/
      var testSelect = document.getElementById("testSelect");
      testSelect.onchange = function() { //當(dāng)選項(xiàng)改變時觸發(fā)
        var valOption = this.options[this.selectedIndex].value; //獲取option的value
         alert(valOption);
        var txtOption = this.options[this.selectedIndex].innerHTML; //獲取option中間的文本
         alert(txtOption);
      }
      
      /*用jQuery實(shí)現(xiàn)*/
      var oSelect = $("#testSelect");
      oSelect.on('change',function(){
        var checkText=$("#testSelect").find("option:selected").text(); //獲取Select選擇的Text 
        var checkValue=$("#testSelect").val();
        console.log(checkText +"~~~~"+ checkValue);
      });
    </script>
</body>

</html>

附:關(guān)于select + option 的相關(guān)知識點(diǎn)

1、jQuery獲取Select元素,并選擇的Text和Value:

$("#select_id").change(function(){//code...}); //為Select添加事件,當(dāng)選擇其中一項(xiàng)時觸發(fā)
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最大的索引值

2、jQuery獲取Select元素,并設(shè)置的 Text和Value:

$("#select_id ").get(0).selectedIndex=1; //設(shè)置Select索引值為1的項(xiàng)選中
$("#select_id ").val(4); // 設(shè)置Select的Value值為4的項(xiàng)選中
$("#select_id option[text='jQuery']").attr("selected", true); //設(shè)置Select的Text值為jQuery的項(xiàng)選中

3、jQuery添加/刪除Select元素的Option項(xiàng):

$("#select_id").append("<option value='Value'>Text</option>"); //為Select追加一個Option(下拉項(xiàng))
$("#select_id").prepend("<option value='0'>請選擇</option>"); //為Select插入一個Option(第一個位置)
$("#select_id option:last").remove(); //刪除Select中索引值最大Option(最后一個)
$("#select_id option[index='0']").remove(); //刪除Select中索引值為0的Option(第一個)
$("#select_id option[value='3']").remove(); //刪除Select中Value='3'的Option
$("#select_id option[text='4']").remove(); //刪除Select中Text='4'的Option

看完這篇關(guān)于JavaScript或jQuery如何獲取option value值的文章,如果覺得文章內(nèi)容寫得不錯的話,可以把它分享出去給更多人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI