متصدع AngularJS صغير

التعريف والاستخدام

lowercase المتصفح يتحول الكلمات إلى أحرف صغيرة.

صفحات مرتبطة

درس AngularJS:متصفح AngularJS

مثال

أظهر النص الأحرف الصغيرة:

<div ng-app="myApp" ng-controller="caseCtrl">
<h1>{{txt | lowercase}}</h1>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('caseCtrl', function($scope) {
    $scope.txt = "Hello World!";
});
</script>

تجربة بنفسك

القواعد النحوية

{{ string | lowercase }}