jQuery - option的值
获取值
$("#equip_show").change(function(){
//获取文本
var checkText = $("#equip_show").find("option:selected").text();
console.info("text:",checkText);
var checkValue = $("#equip_show").val();//获取value值
console.info("value:",checkValue);
});
设置值
$("#select_id ").get(0).selectedIndex=1; //设置Select索引值为1的项选中
$("#select_id ").val(4); // 设置Select的Value值为4的项选中
$("#select_id option[text='jQuery']").attr("selected", true); //设置Select的Text值为jQuery的项选中