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被選中的value和textjQuery
- 使用layui框架的select獲取選中的值UI框架
- jquery獲取下拉框選中的屬性值jQuery
- PHP中如何獲取下拉選單的值PHP
- jQuery Validate對select下拉選單驗證jQuery
- jQuery獲取點選td單元格的值jQuery
- JQuery實現絢麗的橫向下拉選單jQuery
- 設定select下拉選單的預設選中項
- jQuery 利用萬用字元獲取多選框選中的值jQuery字元
- HTML select 下拉選單HTML
- HTML select下拉選單HTML
- jquery實現四級級聯下拉選單jQuery
- 【Javascript】獲取選中的文字JavaScript
- 圓角select下拉選單
- jQuery和css3超讚select下拉選單框美化外掛jQueryCSSS3
- JavaScript獲取選中radio單選按鈕值JavaScript
- HTML+CSS+JQuery實現下拉選單滑鼠懸浮顯示下拉選單,取消隱藏HTMLCSSjQuery
- jquery和bootstrap獲取checkbox選中的多行資料jQueryboot
- JavaScript帶下拉選單的文字框JavaScript
- 選擇select下拉選單網頁跳轉網頁
- JQuery實現下拉框Select的獲取值與文字、動態繫結資料、事件等操作jQuery事件
- 【jquery】select下拉框賦值jQuery賦值
- 模擬select下拉選單詳解
- JavaScript動態操作select下拉選單JavaScript
- select 下拉框選中事件事件
- jQuery有選擇性的禁止文字選中jQuery
- checkbox及css實現點選下拉選單CSS
- select下拉選單跳轉效果程式碼
- jQuery與CSS二級下拉選單jQueryCSS
- 下拉框select中指定option時觸發的選中事件,以及已知選中的值,將它顯示在下拉框中事件
- JQuery select選中值jQuery
- vue使用iview實現單選,禁選,下拉框的效果VueView
- JavaScript 獲取選中checkbox核取方塊的值JavaScript
- HTML+CSS實現下拉選單HTMLCSS
- jQuery實現簡單點選隱藏和點選顯示列表的功能jQuery
- jquery 實現的摺疊展開的選單jQuery
- jquery中點選切換的實現jQuery
- jquery操作select(取值,設定選中)jQuery