日期:2014-05-17  浏览次数:20419 次

MVC中@Html.TextBox如何使用!
如题。

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

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


赋值

$("#sss").val('值');