$("#select_id").change(function(){}); // 为Select添加change事件
var checkValue = $("#select_id").val();
//获取Select选中项的Value
//var value = $(ele).find("option:selected").val();//select添加onchange(this)方法,获取value值
//var value=$("#selected1 option:selected").val(); select根据id,获取value值
//var value=$("#selected1 option:selected").val(); select根据id,获取value值
var checkText = $("#select_id :selected").text(); //获取Select选中项的Text
var checkIndex = $("#select_id").attr("selectedIndex");//获取Select选中项的索引值,
或者:$("#select_id").get(0).selectedIndex;
var maxIndex = $("#select_id :last").attr("index");
//获取Select最大的索引值,
或者:$"#select_id :last").get(0).index;
$("#select_id").get(0).selectedIndex = 1; // 设置Select索引值为1的项选中
$("#select_id").val(4);
// 设置Select的Value值为4的项选中
$("#select_id").attr("value","Normal“);
$("#select_id").get(0).value = value;
//根据select的显示值来为select设值
var count=$("#select_id").get(0).options.length;
for(var i=0;i<count;i++){
if($("#select_id").get(0).options[i].text == text)
{
$("#select_id").get(0).options[i].selected = true;
break;
}
}
$("#select_id").append("<option value='新增'>新增option</option>"); // 1.为Select追加一个Option(下拉项)
$("#select_id").prepend("<option value='请选择'>请选择</option>"); // 2.为Select插入一个Option(第一个位置)
$("#select_id").get(0).remove(1);
// 3.删除Select中索引值为1的Option(第二个)
$("#select_id :last").remove();
// 4.删除Select中索引值最大Option(最后一个)
$("#select_id [value='3']").remove(); // 5.删除Select中Value='3'的Option
$("#select_id").empty();
// 6.清空下拉列表