angular.js - angular如何為一個boolean的值加一個欄位來判斷
PHP中文网
PHP中文网 2017-05-15 17:02:07
0
3
1079

如下:
readonly="expression"

expression中如何根據控制器來獲得呢,

if($scope.index == “0”){
                
                $scope.ifReadOnly=function(){
                    
                    return false;
                }
            }else{
                
                $scope.ifReadOnly=function(){
                    
                    return true;
                }
            }

readonly="expression" 寫成readonly="ifReadOnly()"不可以的。

如何修改才能讓readonly根據expression不同的值去產生作用呢?

PHP中文网
PHP中文网

认证0级讲师

全部回覆(3)
習慣沉默

這樣吧:

<input type="text" readonly="ifReadOnly"/>
$scope.$watch('index', function(newIndex){
    $scope.ifReadOnly = newIndex !== '0';
});
淡淡烟草味

html:

雷雷

js:

雷雷
左手右手慢动作

用ng-readyonly,https://docs.angularjs.org/api/ng/directive/ngReadonly

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!