@{
ViewBag.Title = "Add";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<div>
<div>
<div>
<h3>添加</h3>
</div>
<div>
@using (Html.BeginForm())
{
<dl>
<dd>岗位名称:</dd>
<dd>
<input type="text" datatype="*" nullmsg="请输入产品名称" />
</dd>
</dl>
<dl>
<dd>是否主管:</dd>
<dd>
<select>
<option value="1">是</option>
<option value="0">否</option>
</select>
</dd>
</dl>
<dl>
<dd>岗位说明:</dd>
<dd>
<textarea rows="10" cols="82"></textarea>
</dd>
</dl>
<dl>
<dd>
<input type="submit" value="提 交" />
</dd>
</dl>
}
</div>
</div>
</div>
<script>
//菜单显示
$("#systemusersys").addClass("hbg");
$("");
$("");
$(".systemusersys").each(function (index, item) {
$(this).show();
});
</script>
Edit.cshtml
复制代码 代码如下: