0
我試圖啓用和使用一些條件NG-殘疾人在angularjs是不是爲我工作
我能夠禁止使用$scope.isDisabled = true;
按鈕關閉按鈕,但無法啓用按鈕
這裏是我的代碼
HTML文件
<input type="submit" value="Continue" ng-model="isDisabled" ng-disabled="isDisabled">
控制器JS文件
$scope.isDisabled = true; // here the button disabled (for me)
if (count >= 3) { // it's always true
$scope.isDisabled = false; // try to enable the button here
}
那是完整的代碼嗎?只是好奇什麼使用'ng = model =「isDisabled」'用'type =「submit」' – Satpal
我使用設置的時間間隔來改變按鈕的啓用和禁用,最初處於禁用狀態使用'$ scope.isDisabled =真正;'我嘗試啓用按鈕 – AlexAnand
在$ scope.isDisabled = false後添加'$ scope。$ apply()'; ' – Satpal