我想在下拉列表控件中的文本旁边添加一个图像,但它对我不起作用。问题在哪里?
<asp:DropDownList ID="drpRoomSetup" runat="server">
<asp:ListItem>Select a style</asp:ListItem>
<asp:ListItem style="background-image:url(U.GIF);">U
style</asp:ListItem>
<asp:ListItem style="background-
image:url(Classroom.GIF);">Small rectangular table/chairs)
</asp:ListItem>
</asp:DropDownList>
答案 0 :(得分:0)
这适用于html。 希望它能回答你的问题。
<select>
<option value="volvo" style="background-image:url(images/volvo.png);">Volvo</option>
<option value="saab" style="background-image:url(images/saab.png);">Saab</option>
<option value="honda" style="background-image:url(images/honda.png);">Honda</option>
<option value="audi" style="background-image:url(images/audi.png);">Audi</option>
</select>
如果您需要针对不同的方案,请查看此链接 Click Here