ng-disabled无法在IE中运行

时间:2014-09-16 13:05:35

标签: angularjs

<div>
 <p>hello</p>
 <input type="checkbox" ng-disabled="somefunction()" >
</div>

在控制器功能

$scope.somefunction = function(){
 return true;
}

我的代码看起来像这样。

ng-disabled在chrome和Firefox中正常工作。

在IE11中,如果我双击其选中的复选框。

请告诉我,为什么ng-disabled在IE中失败。

我尝试使用ng-readonly,它也失败了

请帮帮我。提前谢谢。

1 个答案:

答案 0 :(得分:0)

例如,您可以在Css中创建类:

.disabled-class{pointer-events: none; color: gray;}

在此之后,您可以在ng-class中使用此类