首頁  >  文章  >  web前端  >  jQuery增刪改select option的實作方法

jQuery增刪改select option的實作方法

php中世界最好的语言
php中世界最好的语言原創
2018-04-23 16:44:141807瀏覽

這次帶給大家jQuery增刪改select option的實作方法,jQuery增刪改select option的注意事項有哪些,下面就是實戰案例,一起來看一下。

本文實例講述了jQuery增加、刪除及修改select option的方法。分享給大家供大家參考,具體如下:

jQuery取得Select選擇的Text和Value:

1.

//获取Select选择的Text
var checkText=jQuery("#select_id").find("option:selected").text();

2.

//获取Select选择的option Value
var checkValue=jQuery("#select_id").val();

3.

//获取Select选择的索引值
var checkIndex=jQuery("#select_id ").get(0).selectedIndex;

4.

//获取Select最大的索引值
var maxIndex=jQuery("#select_id option:last").attr("index");

#jQuery新增/刪除Select的Option項目:

1.

//为Select追加一个Option(下拉项)
jQuery("#select_id").append("<option value=&#39;Value&#39;>Text</option>");

2.

//为Select插入一个Option(第一个位置)
jQuery("#select_id").prepend("<option value=&#39;0&#39;>请选择</option>");

3.

//删除Select中索引值最大Option(最后一个)
jQuery("#select_id option:last").remove();

4.

//删除Select中索引值为0的Option(第一个)
jQuery("#select_id option[index='0']").remove();

5.

//删除Select中Value='3'的Option
jQuery("#select_id option[value='3']").remove();

6.

//删除Select中Text='4'的Option
jQuery("#select_id option[text='4']").remove();

內容清空:

jQuery("#select_id").empty();

相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!

推薦閱讀:

jquery取得時間方法摘要

#jQuery版本升級有哪些注意事項 

#

以上是jQuery增刪改select option的實作方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn