ANGULARJS 1.3 Integrated Learning (one-by-one-bind, Ng-if, Ng-switch, Ng-form, Ng-model, Ng-message)

Source: Internet
Author: User

It mainly explains some of the new features after 1.3, and some small features (Ng-if,ng-switch) that were not previously introduced.

1.one bind

This previous version has been implemented by some, but after 1.3, ANGULARJS has its own. The usage is extremely simple.

<DivNg-app= "App"Ng-controller= "Ctrl">{{:: value}}</Div><Scriptsrc=".. /.. /js/stooges.js "></Script><Scriptsrc=".. /.. /js/ng-1.3.10/angular.js "></Script><Script>    varapp=Angular.module ("app", []); App.controller ("Ctrl", ["$scope", "$timeout", function($scope, $timeout) {$scope. Value= "keatkeat"; $timeout (function() {$scope. Value= "Xinyao"; }, -); }]);</Script>

You see that? Just change the previous {{value}} to {{:: value}}. Add:: means that this value is only a one-way binding, then $scope changes will not be synchronized to the template.

ANGULARJS 1.3 Integrated Learning (one-by-one-bind, Ng-if, Ng-switch, Ng-form, Ng-model, Ng-message)

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.