我有一个有角度的网络应用程序。当它在Chrome和FireFox上运行时,它就像魅力一样,但是当我在IE 11上测试它时,过了一段时间我所有的输入(type = text)和 textareas 都没有不可编辑。如果我从检查器编辑textarea并将属性 maxlength 设置为有效。时间是随机的,我的控制台日志中没有任何错误。我已经搜索了一些答案,并没有找到微软IE11安装修复程序。有什么建议吗?
<div class="container" ng-app="myApp" ng-controller="MainCtrl">
<h2 ng-bind="someVar"></h2>
<input type="text">
<textarea></textarea>
</div>
var app = angular.module('myApp',[]);
app.controller('MainCtrl',['$scope', function($scope){
$scope.someVar = 'Angular works';
}]);