标签:for sp 问题 cti bs html new as htm
@Html.DropDownList默认值问题解决可以有3中办法
1:Html.DropDownListFor(model=>model.listName,list)
可以在后台为list 集合 附一个默认值
2:用Jquery
Html.DropDownListFor(model=>model.listName,list,new{@class="selectId"})
然后在jQuery中$.each() 遍历,给定默认值
3:Html.DropDownListFor(model=>model.listName,list)
给model.listName 附一个值就可以了,这就是你的默认值。MVC 赋值是双向的
标签:for sp 问题 cti bs html new as htm
原文地址:http://www.cnblogs.com/AppleGold/p/4079675.html