国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

Jquery操作下拉框(DropDownList)實現(xiàn)取值賦值

2019-11-20 22:24:55
字體:
供稿:網(wǎng)友
1. 獲取選中項:
復(fù)制代碼 代碼如下:

獲取選中項的Value值:
$('select#sel option:selected').val();
或者
$('select#sel').find('option:selected').val();
獲取選中項的Text值:
$('select#seloption:selected').text();
或者
$('select#sel').find('option:selected').text();

2. 獲取當(dāng)前選中項的索引值:
復(fù)制代碼 代碼如下:

$('select#sel').get(0).selectedIndex;

3. 獲取當(dāng)前option的最大索引值:
復(fù)制代碼 代碼如下:

$('select#sel option:last').attr("index")

4. 獲取DropdownList的長度:
復(fù)制代碼 代碼如下:

$('select#sel')[0].options.length;
或者
$('select#sel').get(0).options.length;

5. 設(shè)置第一個option為選中值:
復(fù)制代碼 代碼如下:

$('select#sel option:first').attr('selected','true')
或者
$('select#sel')[0].selectedIndex = 0;

6. 設(shè)置最后一個option為選中值:
復(fù)制代碼 代碼如下:

$('select#sel option:last).attr('selected','true')

7. 根據(jù)索引值設(shè)置任意一個option為選中值:
復(fù)制代碼 代碼如下:

$('select#sel')[0].selectedIndex =索引值;索引值=0,1,2....

8. 設(shè)置Value=4 的option為選中值:
復(fù)制代碼 代碼如下:

$('select#sel').attr('value','4');
或者
$("select#sel option[value='4']").attr('selected', 'true');

9. 刪除Value=3的option:
復(fù)制代碼 代碼如下:

$("select#sel option[value='3']").remove();

10.刪除第幾個option:
復(fù)制代碼 代碼如下:

$(" select#sel option ").eq(索引值).remove();索引值=0,1,2....
如刪除第3個Radio:
$(" select#sel option ").eq(2).remove();

11.刪除第一個option:
復(fù)制代碼 代碼如下:

$(" select#sel option ").eq(0).remove();
或者
$("select#sel option:first").remove();

12. 刪除最后一個option:
復(fù)制代碼 代碼如下:

$("select#sel option:last").remove();

13. 刪除dropdownlist:
復(fù)制代碼 代碼如下:

$("select#sel").remove();

14.在select后面添加一個option:
復(fù)制代碼 代碼如下:

$("select#sel").append("f");

15. 在select前面添加一個option:
復(fù)制代碼 代碼如下:

$("select#sel").prepend("0");

16. 遍歷option:
復(fù)制代碼 代碼如下:

$(' select#sel option ').each(function (index, domEle) {
//寫入代碼
});
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 广平县| 西林县| 柯坪县| 青田县| 宿州市| 鹤庆县| 拉萨市| 大渡口区| 陇川县| 霍山县| 桐城市| 重庆市| 延寿县| 米易县| 襄城县| 从化市| 虞城县| 巴彦县| 青州市| 汾阳市| 高安市| 恩平市| 临城县| 天门市| 稷山县| 绵阳市| 高清| 赣州市| 广德县| 松桃| 昌邑市| 雷波县| 吴堡县| 汾西县| 肥东县| 健康| 邵阳市| 庄浪县| 蓬莱市| 文山县| 诸城市|