Javascript 引导TextArea在IE11中无法重新调整大小

Javascript 引导TextArea在IE11中无法重新调整大小,javascript,asp.net-mvc,twitter-bootstrap,internet-explorer-11,Javascript,Asp.net Mvc,Twitter Bootstrap,Internet Explorer 11,我正在ASP.NET中实现一个MVC web应用程序 生成视图,给了我 @Html.EditorFor(model => model.Bio, new { htmlAttributes = new { @class = "form-control" } } ) 我想要文本区域,所以我把它改为 @Html.TextAreaFor(model => model.Bio, new { htmlAtt

我正在ASP.NET中实现一个MVC web应用程序

生成视图,给了我

@Html.EditorFor(model => model.Bio, 
                         new { htmlAttributes = new { @class = "form-control" } }
)
我想要文本区域,所以我把它改为

@Html.TextAreaFor(model => model.Bio, 
                  new { htmlAttributes = new { @class = "form-control" } }
)
问题是IE11中的文本区域无法调整大小。 Chrome、FireFox和Opera没有问题

我还尝试了以下解决方案:


请告知。

对于文本区域使用jQueryUI可调整大小

在项目中包括jQuery UI库

<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>

它不起作用了。我在视图的开头添加了“@section MyCustomScripts{code.jquery.com/jquery-1.12.4.js”>code.jquery.com/ui/1.12.1/jquery ui.js”>$(function(){$(“#About”).resizable();)}”,但我遇到了错误,无法正常工作。我使用的是MVC 5这是我的代码:{ViewBag.Title=“Edit”}~section MyCustomScripts{$(function(){$(“#About”).resizeable();}}}替换为@~Html.TextAreaFor(model=>model.About,10300,new{htmlAttributes=new{~class=“form control”})我得到了一个错误:对象不支持属性或方法“Resizeable”,好的,可以看看为什么它不工作。这里有一个多边形填充,你可以试试
$("#MyTextAreaId").resizable({ });