MVC3中给Html.TextAreaFor设置默认值(初始值)时间:2023-03-09 05:26:06 <div class="editor-field"> @Html.TextAreaFor(model => model.Comments) @Html.ValidationMessageFor(model => model.Comments) </div> <script type="text/javascript"> $(function () { $("#Comments").html("default value"); }); </script>