jquery如何獲取select下拉選單選中項的值和文字
select下拉選單是常用的表單元素之一,經常要獲取它的選中項的value屬性值和顯示的文字內容。
下面就通過例項簡單介紹一下如何獲取這兩個屬性值。
一.獲取value屬性值:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <head> <title>螞蟻部落</title> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script type="text/javascript"> $(function(){ $('#bt').click(function(){ alert($('#myselect option:selected').val()); }) }) </script> </head> <body> <select id="myselect"> <option value="1">螞蟻部落</option> <option value="2">css教程</option> <option value="3">javascript教程</option> </select> <input type="button" id="bt" value="獲取" /><br /> </body> </html>
以上程式碼可以彈出當前select下拉選單選擇項的value屬性值。
二.獲取文字屬性值:
在上面程式碼基礎將,將相應語句修改成以下程式碼即可:
[JavaScript] 純文字檢視 複製程式碼alert($('#myselect option:selected').text());
相關文章
- jquery實現的獲取選中select下拉選單的值和文字jQuery
- jquery獲取select下拉選中option項的value值jQuery
- js獲取當前select下拉選單選中項的值JS
- 更改select下拉選單項獲取對應的值和文字
- js如何獲取select下拉選單的預設選中項JS
- 原生js如何獲取選中的select下拉項的值JS
- js獲取select下拉選單的value和文字值JS
- 獲取選中select下拉選單的value屬性值
- jQuery實現的獲取select下拉選單的text和value值jQuery
- 獲取select下拉選單預設選中項的索引索引
- jquery實現的獲取select下拉選單value和文字內容jQuery
- javascript獲取select下拉選單框的value和text值JavaScript
- js獲取select下拉選單中option項的數目JS
- js獲取select下拉選單的所有option項JS
- js獲取select選中項的值和文字內容JS
- jquery如何操作select下拉選單jQuery
- javascript獲取select下拉選單所有項的內容JavaScript
- 選中select下拉選單項提交表單
- PHP中如何獲取下拉選單的值PHP
- jQuery如何獲取選中單選按鈕radio的值jQuery
- javascript如何獲取當前選中的option項的文字和value值JavaScript
- jquery 獲取select框選中的值示例一則jQuery
- jQuery 美化select下拉選單jQuery
- JavaScript 獲取select下拉選單所有optionJavaScript
- jQuery美化select下拉選單程式碼例項jQuery
- jQuery操作select下拉選單程式碼例項jQuery
- JQuery 獲取select被選中的value和textjQuery
- 設定select下拉選單的預設選中項
- 將選中的下拉選單值寫入文字框
- jquery select下拉選單新增或者刪除option項jQuery
- jQuery刪除select下拉選單中所有option項jQuery
- 如何清空select下拉選單的所有option項
- jQuery獲取被選中radio單選按鈕的值jQuery
- 選中select下拉選單option項實現提交效果
- jQuery select下拉選單的相關操作jQuery
- jquery新增或者刪除select下拉選單項程式碼jQuery
- jQuery select下拉選單復位效果jQuery
- jQuery操作select下拉選單程式碼jQuery