单击我们在 css 中添加的图像图标时的下拉列表

Dropdownlist on clicking on an image icon we have added in css

本文关键字:图像 图标 下拉列表 添加 我们 css 单击      更新时间:2023-09-26

这是我现有的下拉列表:

@Html.DropDownList("ddlMailSignature", (IEnumerable<SelectListItem>)ViewBag.MailSignature, "Mail Signature", new { @class = "select2" })

是否可以使用我在应用程序中添加的图像来获取相同的下拉列表?下面是我图片的CSS。

.MailSignature {
  background: url(../img/signature.png) no-repeat;
  width: 20px;
  height: 15px;
  float: right;
}

默认下拉列表目前无法做到这一点。但是您可以尝试使用一个插件来选择框,这些选择框可以通过事件打开/关闭。检查此答案。