前端之家收集整理的这篇文章主要介绍了
ASP.NET MVC 3助手中的Tab命令,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用Tab Order
属性获取以下
代码:
<td>
@Html.EditorFor(model => model.Cost)
</td>
我试过这个:
<td tabindex=1>
@Html.EditorFor(model => model.Cost)
</td>
有什么建议么?
您还可以在帮助器本身中指定相同的html
属性,如下所示.
@Html.TextBoxFor(model => model.Cost,new { tabindex = 1 })
原文链接:https://www.f2er.com/aspnet/249039.html