我在我的視圖中有三個DropDownLists。我用可視化它們的代碼是這樣的:ASP.NET MVC 3視圖中的樣式DropDownList
@{
var listItems = new List<SelectListItem>();
listItems.Add(new SelectListItem { Text = String.Empty, Value = String.Empty });
foreach (var name in ViewBag.Names)
{
listItems.Add(new SelectListItem { Text = name, Value = name });
}
}
<span>
Repair Form : @Html.DropDownList("dropDownList", listItems)
</span>
//code...
<span>
Tools : @Html.DropDownList("kkcDropDownList", kkcItems)
</span>
//code...
<span>
Document : @Html.DropDownList("docDropDownList", docItems)
</span>
//code...
而且我得到這個的結果是:
我想改變的是出場順序 - 現在是文本的下拉列表中,文本下拉.. insted的我想成爲文本和文本下面這樣的下拉列表:
我需要第二個選項。是否可以共享一個CSS示例代碼? – Leron 2013-04-22 11:25:33
我會看看我能否爲你創建一個例子 – Klors 2013-04-22 11:38:28
這是一個簡單的例子。 http://jsfiddle.net/Klors/KVzxu/ – Klors 2013-04-22 11:49:00