当前位置: 代码迷 >> ASP.NET >> MVC中@Html.TextBox怎么使用
  详细解决方案

MVC中@Html.TextBox怎么使用

热度:5487   发布时间:2013-02-25 00:00:00.0
MVC中@Html.TextBox如何使用!
如题。

如何在页面中使用,如何在js中赋值。

------解决方案--------------------------------------------------------
@Html.TextBox("sss","ttt") 解析到页面 为<input id="sss" name="sss" type="text" value="ttt" />


赋值

$("#sss").val('值');
  相关解决方案