jquery實現的獲取選中select下拉選單的值和文字
select下拉選單是最為常用的表單元素,經常用在有選擇性的操作,比如選擇年月日,或者興趣愛好等等功能場景中,下面就介紹一下如何利用jquery實現獲取當前選中項的value和text效果。
程式碼如下:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $(function(){ $("#btn").click(function(){ var index = $("#sel").get(0).selectedIndex; var selectVal = $("#sel option:selected").val(); var selectText = $("#sel option:selected").text(); $("#show").html("獲取select下拉框索引:" + index + "<br/>" + "獲取select下拉框的值:" + selectVal + "<br/>" + "獲取select下拉框的文字:" + selectText); }); }); </script> </head> <body> <div id="show"></div> <div> <select id="sel"> <option selected value=0>螞蟻部落一</option> <option value=1>螞蟻部落二</option> <option value=2>螞蟻部落三</option> <option value=3>螞蟻部落四</option> <option value=4>螞蟻部落五</option> </select> </div> <input id="btn" value="獲取選中的文字和值" type="button"/> </body> </html>
上面的程式碼實現了我們的要求,下面介紹一下它的實現過程。
一.程式碼註釋:
1.$(function(){}),文件結構完全載入完畢再去執行函式中的程式碼。
2.$("#btn").click(function(){}),為按鈕註冊click事件處理函式。
3.var index = $("#sel").get(0).selectedIndex,獲取選中項的索引值。
4.var selectVal = $("#sel option:selected").val(),獲取選中項的value值。
5.var selectText = $("#sel option:selected").text(),獲取選中項的text文字內容。
二.相關閱讀:
1.get()函式可以參閱jQuery get()一章節。
2.selectedIndex可以參閱javascript select.selectedIndex一章節。
相關文章
- jquery如何獲取select下拉選單選中項的值和文字jQuery
- jQuery實現的獲取select下拉選單的text和value值jQuery
- jquery實現的獲取select下拉選單value和文字內容jQuery
- js獲取select下拉選單的value和文字值JS
- 獲取選中select下拉選單的value屬性值
- jquery獲取select下拉選中option項的value值jQuery
- js獲取當前select下拉選單選中項的值JS
- 更改select下拉選單項獲取對應的值和文字
- javascript獲取select下拉選單框的value和text值JavaScript
- 獲取select下拉選單預設選中項的索引索引
- 原生js如何獲取選中的select下拉項的值JS
- js如何獲取select下拉選單的預設選中項JS
- jquery 獲取select框選中的值示例一則jQuery
- js獲取select下拉選單中option項的數目JS
- JQuery 獲取select被選中的value和textjQuery
- 將選中的下拉選單值寫入文字框
- js獲取select選中項的值和文字內容JS
- jQuery 美化select下拉選單jQuery
- js獲取select下拉選單的所有option項JS
- JavaScript 獲取select下拉選單所有optionJavaScript
- 選中select下拉選單option項實現提交效果
- jQuery獲取被選中radio單選按鈕的值jQuery
- jQuery如何獲取選中單選按鈕radio的值jQuery
- PHP中如何獲取下拉選單的值PHP
- javascript獲取select下拉選單所有項的內容JavaScript
- jQuery select下拉選單的相關操作jQuery
- jquery如何操作select下拉選單jQuery
- jQuery取得select選擇的文字與值jQuery
- jquery獲取下拉框選中的屬性值jQuery
- 使用layui框架的select獲取選中的值UI框架
- jQuery獲取選中的核取方塊或者單按鈕的值jQuery
- jQuery獲取點選td單元格的值jQuery
- jQuery select下拉選單復位效果jQuery
- jQuery操作select下拉選單程式碼jQuery
- jquery實現的點選二級下拉導航選單jQuery
- 選中select下拉選單項提交表單
- jQuery 利用萬用字元獲取多選框選中的值jQuery字元
- jquery操作select下拉選單簡單介紹jQuery