2016年6月6日 星期一

ng-mdel 輸入自動轉大寫

 .directive('uppercased', function() {
     return {
         require: 'ngModel',      
         link: function(scope, element, attrs, modelCtrl) {
             modelCtrl.$parsers.push(function(input) {
                 return input ? input.toUpperCase() : "";
             });
             element.css("text-transform","uppercase");
         }
     };
 })


input type="text" uppercased ng-model="id"

沒有留言:

input 連結 datalist 用程式控制彈出選項

範例: nextTick(() => document.querySelector('input').showPicker());  ※僅支援現代瀏覽器