뭔가 다른 형태 내의 모든 속성을 변경 :jQuery를 내가 폼 요소와 형태가
@using (Html.BeginForm("Edit", "UserProfile", FormMethod.Post, new { id = "EditUserForm", @class = "form-horizontal form-bordered" }))
{
<div class="form-group">
@Html.LabelFor(m => m.Email, new { @class = "col-sm-4 control-label" })
<div class="col-sm-8">
@Html.TextBoxFor(m => m.Email, new { @class = "form-control", type = "text", @readonly = "readonly" })
</div>
</div><!-- form-group -->
<div class="form-group">
@Html.LabelFor(m => m.Name, new { @class = "col-sm-4 control-label" })
<div class="col-sm-6">
@Html.TextBoxFor(m => m.Name, new { @class = "form-control", type = "text", @readonly = "readonly" })
</div>
</div><!-- form-group -->
}
을 나는 모든 요소 형태 내에서 변경하기를 통해 루프 jQuery를 사용하려면/제거 readonly
특성 버튼/요소를 클릭하면
어떻게하면 되나요? 내가 아는 이드의 단 한 항목의 속성을 변경하는 방법 만 알면됩니까?
html은 면도기 용입니다.
질문이 클라이언트 측만 인 경우 렌더링 된 HTML을 제공하는 것이 훨씬 더 좋습니다. – Regent
내 코드는이 질문에도 사용할 수 있습니다. @ zapnologica –