AngularJS ng-model directive

Source: Internet
Author: User

AngularJS ng-model directive

The Ng-model directive is used to bind application data to the value of the HTML controller (input, select, textarea).

<div ng-app= "myApp" ng-controller= "Myctrl" > Name: <input ng-model= "Name" ></div>
<script>
var app = Angular.module (' myApp ', []);
App.controller (' Myctrl ', function ($scope) {
$scope. Name = "John Doe";
});
</script>

Two-way binding

Bidirectional binding, the value of the AngularJS property is also modified when the value of the input field is modified:

<div ng-app= "myApp" ng-controller= "Myctrl" > Name: <input ng-model= "Name" >

Validating user input

<Formng-app=" " name= "myForm">
Email:
<input type="email" name= "myAddress" ng-model="text">
<span ng-show="myform.myaddress. $error. Email"> not a legitimate email address </span >
</form>

In the above example, the prompt information is ng-show true displayed in the case where the property is returned.

Application Status

AngularJS ng-model directive

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.