DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> Jquery Select操作方法集合破洛洛特別版
Jquery Select操作方法集合破洛洛特別版
編輯:JQuery特效代碼     
jQuery這個框架方便了我們對於HTML元素的操作,本來以為自己對於Select操作也算是熟悉了,但上午在測試的時候才發現自己了解的還真不多。

看了一下jQuery的一些方法後,理出了一些常用的方法,列在下面:

//獲取第一個option的值
$('#test option:first').val();
//最後一個option的值
$('#test option:last').val();
//獲取第二個option的值
$('#test option:eq(1)').val();
//獲取選中的值
$('#test').val();
$('#test option:selected').val();
//設置值為2的option為選中狀態
$('#test').attr('value','2');
//設置第一個option為選中
$('#test option:last').attr('selected','selected');
$("#test").attr('value' , $('#test option:last').val());
$("#test").attr('value' , $('#test option').eq($('#test option').length - 1).val());
//獲取select的長度
$('#test option').length;
//添加一個option
$("#test").append("<option value='9'>ff</option>");
$("<option value='9'>ff</option>").appendTo("#test");
//添除選中項
$('#test option:selected').remove();
//指定項選中
$('#test option:first').remove();
//指定值被刪除
$('#test option').each(function(){
if( $(this).val() == '5'){
$(this).remove();
}
});
$('#test option[value=5]').remove();

//獲取第一個Group的標簽
$('#test optgroup:eq(0)').attr('label');
//獲取第二group下面第一個option的值
$('#test optgroup:eq(1) :option:eq(0)').val();

獲取select中選擇的text與value相關的值

獲取select選擇的Text : var checkText=$("#slc1").find("option:selected").text();
獲取select選擇的value:var checkValue=$("#slc1").val();
獲取select選擇的索引值: var checkIndex=$("#slc1 ").get(0).selectedIndex;
獲取select最大的索引值: var maxIndex=$("#slc1 option:last").attr("index");

設置select選擇的Text和Value

設置select索引值為1的項選中:$("#slc1 ").get(0).selectedIndex=1;
設置select的value值為4的項選中: $("#slc1 ").val(4);
設置select的Text值為JQuery的選中:
$("#slc1 option[text='jQuery']").attr("selected", true);
PS:特別要注意一下第三項的使用哦。看看JQuery的選擇器功能是如此地強大呀!

添加刪除option項

為select追加一個Option(下拉項)
$("#slc2").append("<option value='"+i+"'>"+i+"</option>");
為select插入一個option(第一個位置)
$("#slc2").prepend("<option value='0'>請選擇</option>");
PS: prepend 這是向所有匹配元素內部的開始處插入內容的最佳方式。
刪除select中索引值最大option(最後一個)
$("#slc2 option:last").remove();
刪除select中索引值為0的option(第一個)
$("#slc2 option[index='0']").remove();
刪除select中value='3'的option
$("#slc2 option[value='3']").remove();
刪除select中text='4'的option
$("#slc2 option[text='3']").remove();

一些相關的補充資料:
Jquery操作Select 簡單方便 一個js插件搞定
JQuery select標簽操作代碼段
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved