我div
在我的视图中
<div class="control-group" id="Phone"></div>
,我需要使用 jQuery 脚本在里面添加代码。
我试过这个
@section Scripts
{
<script type="text/javascript">
$("select#Role").change(function () {
if ($(this).val() == "2") {
$("div#Phone").html('<span class="control-label">* Phone:</span>
<div class="controls">
@Html.TextBoxFor(m => m.PhoneNumber)
@Html.ValidationMessageFor(m => m.PhoneNumber, null, new { @class = "text-error" })
</div>');
} else {
}
});
</script>
}
但我有很多错误。
出了什么问题以及如何解决?