嗨我在页面加载时禁用所选标签时遇到问题。我的js代码如下所示。
(function() {
angular.module('chosenExampleApp', ['localytics.directives']).controller('IndexCtrl',function($scope) {
$scope.testProp = "hello";
$scope.myPets = ['cat'];
$scope.pets = {
cat: 'Cat',
dog: 'Dog',
hamster: 'Hamster'
};
})
}).call(this);
Html正文如下所示。
<body ng-controller="IndexCtrl">
Disable <input type="radio" ng-model="testProp" name="radiotest" value="hello"/>
Enable <input type="radio" ng-model="testProp" name="radiotest" value="hello1"/>
<select
multiple
ng-model="myPets"
ng-options="value as label for (value, label) in pets"
chosen
ng-disabled="testProp=='hello'"
style="width:200px;">
</select>
</body>
由于testProp的值设置为hello,我希望在页面加载时禁用所选的。但它在页面加载时启用。一旦我选择按钮启用然后选择禁用,它的工作正常。请让我知道如何解决这个问题。
链接到Plunker是here
答案 0 :(得分:3)