jquery對select方法總結

2021-08-31 17:47:28 字數 1254 閱讀 2623

取select option value值

[b]取得select選擇項的值:[/b]

$("#select_id").val();

$("#select_id option:selected").val();

[b]取得select第乙個option的值:[/b]

$("#select_id option:first").val();

[b]取得select最後乙個option的值:[/b]

$("#select_id option:last").val();

[b]取得select第二個option的值:[/b]

$("#select_id option:eq(1)").val();

取select option文字值

[b]取得select選擇項的文字值:[/b]

$("#select_id").find("option:selected").text();

[b]清空select所有option項:[/b]

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

[b]追加乙個option項:[/b]

[b]在第乙個位置插入乙個option項:[/b]

$("#select_id").prepend("text");

[b]刪除乙個option項:[/b]

$(this).remove();

$("#select_id option[value='value']").remove();

$("#select_id option[index=1]").remove();

$("#select_id option[text='text']").remove();

[b]設定值為value的option為選中狀態:[/b]

$("#select_id").attr("value","value");

[b]設定第乙個option為選中狀態:[/b]

$("#select_id").attr("value",$("#select_id option:first").val());

$("#select_id option:first").attr("selected","selected");

[b]獲取select的長度:[/b]

$("#select_id option").length;

[b]獲取第乙個optgroup標籤:[/b]

$("#select_id optgroup:eq(0)").attr("label");

jQuery對select操作小結

遍歷option和新增 移除option function changeshipmethod shipping else 取得下拉列表的選取值 testselect option selected text 或 testselect find option selected text 或 tests...

jQuery 對 Select 的操作

取得下拉列表的選取值 testselect option selected text 或 testselect find option selected text 或 testselect val 記性不好的可以收藏下 1,下拉框 稍微解釋一下 1.select name country optio...

jQuery對select操作小結

取得下拉列表的選取值 testselect option selected text 或 testselect find option selected text 或 testselect val 記性不好的可以收藏下 1,下拉框 稍微解釋一下 1.select name country optio...