ページが読み込まれている間、下の div タグは非表示になっている必要があります。ボタンをクリックすると、div が表示されます。asp.net mvc かみそりを使用しています
<div id="field">
@Html.LabelFor(model => model.createSetting.Name)
@Html.TextBoxFor(model =>model.createSetting.Name, new { @class = "span6 m-wrap" })
@Html.ValidationMessageFor(model => model.createSetting.Name)
@Html.LabelFor(model => model.createSetting.ExternalCode)
@Html.TextBoxFor(model =>model.createSetting.ExternalCode, new { @class = "span6 m-wrap"})
@Html.ValidationMessageFor(model => model.createSetting.ExternalCode)
</div>
<input type="button" value="Add Setting" id="btnAddSetting" class="btn green"/>