Neueste Web-Entwicklung Tutorials
 

AngularJS ng-Modell Richtlinie


Beispiel

Binden, um den Wert eines Eingabefeldes auf eine Variable in dem Bereich:

<div ng-app="myApp" ng-controller="myCtrl">
    <input ng-model="name">
</div>

<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
    $scope.name = "John Doe";
});
</script>
Versuch es selber "

Definition und Verwendung

Die ng-model Direktive bindet an eine Variable im Rahmen ein HTML - Formular - Element.

Wenn die Variable in den Schutzbereich nicht vorhanden ist, wird es erzeugt.


Syntax

< element ng-model=" name "></ element >

Unterstützt von <input>, <select> und <textarea> Elemente.


Parameterwerte

Value Description
name The name of the property you want to bind to the form field.

Ähnliche Seiten

Angular Tutorial: ng-Modell Richtlinie