首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

MVC中@Html.TextBox怎么使用

2012-08-28 
MVC中@Html.TextBox如何使用!如题。如何在页面中使用,如何在js中赋值。[解决办法]@Html.TextBox(sss,ttt

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

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

[解决办法]
@Html.TextBox("sss","ttt") 解析到页面 为<input id="sss" name="sss" type="text" value="ttt" />


赋值

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

热点排行