我想DropDownList助手生成一個具有特定id名稱的空下拉列表,以便我使用後者將JQuery放入一些數據。我該怎麼做?DropDownList empty
-2
A
回答
2
你可以做一個自定義的幫手
public static IHtmlString EmptyDropDownList(this HtmlHelper helper, string id)
{
return MvcHtmlString.Create(string.Format("<select id=\"{0}\"></select>", id));
}
用法:
@Html.EmptyDropDownList("test")
+0
非常感謝Raphaël – amar
1
DropDownList是一個ListControl。它的項目成員也是控件。如果您通過前端添加值,服務器將檢測到對ViewState的篡改。
如果你想從前端添加值,用好舊的HTML <select>
相關問題
- 1. C#asp dropdownlist databind empty dataset selectedindex
- 2. Empty cells are moving around when empty
- 3. Android listview with empty lines when empty
- 4. windows form combobox drawmode empty list
- 5. ImageView empty
- 6. Text_area empty
- 7. Android:Email'to'field empty
- 8. REMOTE_USER empty
- 9. Empty IQueryable在Empty時返回什麼?
- 10. Asp.net MVC2 ModelBindingContext.ModelName empty
- 11. ListView - SimpleCursorAdapter - @android:id/empty
- 12. OpenCV FindContours return empty
- 13. NSPredicate returns empty array
- 14. Delphi textfile empty
- 15. rails controller.controller_name empty
- 16. Empty Burndown圖表
- 17. php $ _GET empty
- 18. php isset,empty,null,=「」
- 19. Empty While loop- Arduino
- 20. php class _Construct empty
- 21. CSS float empty spaces
- 22. json return empty array
- 23. php filter empty array
- 24. jQuery if div empty
- 25. Android listview empty
- 26. Knockoutjs - empty json
- 27. Extraneous Empty Trailing Match
- 28. Drupal 6 node_view empty
- 29. $ state params is empty
- 30. Netbeans,empty DefaultListModel
BTW一個這樣做的方式是使用jQuery在頁面加載中添加下拉選項 – Adil
如果您使用jQuery使用數據,爲什麼不直接寫一個Html Select元素? – Shyju