每个项目旁边带有图像的下拉列表
如何在 asp.net 下拉列表的每个项目旁边有一个小图像。
问候 拉维
How can I have a small image beside each item of asp.net dropdown list.
Regards
ravi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在这里试试这个,很棒的 ASP 组合框。
Obout.com
Try this here, great combo box for ASP.
Obout.com
您必须实现自己的控件,因为据我所知,标准 DropDownList 使用浏览器的标准组合框,并且不支持图像。
您可以从 http://www.asp.net/AJAX/ 开始AjaxControlToolkit/Samples/ComboBox/ComboBox.aspx
并修改它以显示图像
You'd have to implement your own control, because as far as I know, standard DropDownList uses browser's standard combobox and it does not support images.
You might start with http://www.asp.net/AJAX/AjaxControlToolkit/Samples/ComboBox/ComboBox.aspx
and modify it to show images
HTML
select
元素中没有这样的东西。您必须使用 JavaScript 编写它,例如此处。There is no such thing in an HTML
select
element. You would have to write it using JavaScript, e.g. something here.