在 mvc3 中创建相同下拉列表的最佳方法是什么?正如您在此链接中看到的 Html JS 示例
我试着这样做
模型:
public enum oporetor
{
greater_then = '>',
less_than = '<',
equal = '='
}
public oporetor getOp { get; set; }
}
查看模型:
@Html.DropDownListFor(model => model.getOp, new SelectList(Enum.GetValues(typeof(Fnx.Esb.ServiceMonitor.ViewModel.AdvanceSearchModel.oporetor))))
看法:
@Html.EditorFor(x => x.AdvanceSearchModel)
我得到了一个基本的下拉列表,其中包含大于、小于、等于。如何在下拉列表中显示 <,>,=?