請選擇城市
瀋陽北京
上海
//0.為select新增事件,當選擇其中一項時觸發
$("#select_id").change(function());
// 獲取select選擇的text
var checktext=$("#select_id").find("option:selected").text();
// 獲取select選擇的value
var checkvalue=$("#select_id").val();
// 獲取select選擇的索引值
var checkindex=$("#select_id ").get(0).selectedindex;
// 獲取select最大的索引值
var maxindex=$("#select_id option:last").attr("index");
// 內容清空
$("#select_id").empty();
//1.判斷select選項中 是否存在value="gz"的option
$("#selectid option[value='gz']").length>0
//2.向select選項中 加入乙個item
//3.向select選項中 加入乙個item
$("#selectid").prepend("請選擇");
//4.從select選項中 刪除乙個item
$("#selectid").remove("廣州");
$("#selectid option:last").remove(); //刪除select中索引值最大option(最後乙個)
$("#select_id option[index='0']").remove(); //刪除select中索引值為0的option(第乙個)
$("#select_id option[value='3']").remove(); //刪除select中value='3'的option
$("#select_id option[text='4']").remove(); //刪除select中text='4'的option
// 5.選中value='sy'的option
$("#selectid option[value='sy']").attr("selected","true")
$("#selectid option[text='瀋陽']").attr("selected","true");// 經測試, 前提必須option上有text屬性
例如: 瀋陽
7.設定select中第一 個item為選中
$("#selectid option").eq(0).attr('selected', 'true');
8. 得到select的當前選中項的value
$("#selectid").val();
9.得到select的當前選中項的text
$("#selectid").text();
jQuery 對 Select 的操作
取得下拉列表的選取值 testselect option selected text 或 testselect find option selected text 或 testselect val 記性不好的可以收藏下 1,下拉框 稍微解釋一下 1.select name country optio...
jQuery對select的操作
獲取select 獲取select 選中的 text selectid find option selected text 獲取select選中的 value selectid val 獲取select選中的索引 selectid get 0 selectedindex 設定select 設定sel...
jquery 對select的操作
如題。使用js直接操作select。一般會使用到下面的幾個命令 var tmp document.getelementbyid select 建立option方法1 var tmpop document.createelementbytagname option tmp.value 1 建立opti...