ドロップダウン リストがあり、リスト内の特定の項目の背景色を黄色にしたいのですが、そのための jquery コードがわかりません。
スクリプトは次のとおりです。
<script language="text/Javascript">
$(function(){
$('select[id="ddlParticipants"]'.rows[2].bgColor = "#FFFF00")
})
</script>
ドロップダウンリストは次のとおりです。
<asp:DropDownList ID="ddlParticipants" runat="server" Width="300px"
AutoPostBack="True"
onselectedindexchanged="ddlParticipants_SelectedIndexChanged"
meta:resourcekey="ddlParticipantsResource1">
<asp:ListItem Text="<%$ Resources:Resources, Select %>"
meta:resourcekey="ListItemResource1"></asp:ListItem>
<asp:ListItem Text="---I am a NEW participant---" Value="0"
meta:resourcekey="ListItemResource2"></asp:ListItem>
</asp:DropDownList>
「私は新規参加者です」というリスト項目を黄色にしたいです。誰にもアイデアはありますか?
ありがとう