如何以角度

时间:2017-02-24 13:16:42

标签: html angularjs

当我正在动态地进行资本化时,我遇到了一个问题。在我的代码中,我可以大写任何字母,但它不是动态的,程序应该猜测它应该大写哪个字母。例如,一些文本来自JSON,应该有一些比较检查文本字母和用户输入的字母,然后他应该猜测他必须把哪封信大写。如果有解决方案,请告诉我。这是我的代码:

的index.html

<textarea  id="fieldId" class="textarea" style="resize: none" cols="30" row="2" ui-mask="{{typetext}}" ng-model="model"  data-ng-trim="fasle" ng-trim="false" ng-focus="expression"> 
</textarea>

scipt.js,这就是我想要做的事情。

link: function(scope, iElement, iAttrs, controller) {
    controller.$parsers.push(function(inputValue) {
        var transformedInput = '';
        if (inputValue) {
            for (var i = 0; i < inputValue.length; i++) {
                if (i === 0 || i === 5) {
                    transformedInput += inputValue.charAt(i).toUpperCase();
                } else {
                    transformedInput += inputValue.charAt(i).toLowerCase();
                }
            }
        }
        if (transformedInput != inputValue) {
            controller.$setViewValue(transformedInput);
            controller.$render();
        }
        return transformedInput;
    });
})

和控制器

app.controller('myController', ['$scope', '$document', function($scope, $document) {
    $scope.typetext = "Some Text";
    $document.on('keydown', function(e) {
        if (e.which === 8 && e.target.nodeName !== "INPUT") {
            e.preventDefault();
        }
    });
}])

0 个答案:

没有答案