我在ASP.NET中实现了一个MVC Web应用程序。
生成视图,给我
@Html.EditorFor(model => model.Bio,
new { htmlAttributes = new { @class = "form-control" } }
)
我想拥有TextArea所以我将其更改为
@Html.TextAreaFor(model => model.Bio,
new { htmlAttributes = new { @class = "form-control" } }
)
问题是IE11中的文本区域无法调整大小。 Chrome,FireFox和Opera都没有问题。
我也尝试过解决方案:This Q/A
请告知。
答案 0 :(得分:0)
对textareas使用jQueryUI Resizable。
在项目中包含jQuery UI库
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
然后在你的jquery代码中调用下面的行
$("#MyTextAreaId").resizable({ });