私はこれを持っています、
<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("");
}
});
これはオプション値を変更する場合にのみ機能しますが、これで選択したオプション値も取得したいと思います。前もって感謝します