我有这个,
<select id="customUser_id" name="customUser_id">
<option value="2" label="Friends Of Friends">Friends Of Friends</option>
<option selected="selected" value="3" label="Friends Only">Friends Only</option>
<option value="4" label="Specific People">Specific People</option>
<option value="0" label="Only Me">Only Me</option>
</select>
我想获得Selected Option
使用 jQuery 的价值。
目前我正在使用onchange()
这样的事件,
$('#customUser_id').change(function(){
if(($(this).val()==2)){
$("#customWallPost3").text("Only Friends of Friends can see this");
}
else if(($(this).val()==3)){
$("#customWallPost3").text("Only Friends can see this");
}
else if(($(this).val()==4)){
$("#customWallPost3").text("Only the people above can see this");
}
else if(($(this).val()==0)){
$("#customWallPost3").text("Only I can see this");
}
else{
$("#customWallPost3").text("");
}
});
这仅在更改选项值时才有效,但我也想以此获得选定的选项值。提前致谢