How to use instructions in Angluarjs

Source: Internet
Author: User

I am a beginner, if there is a lack of open-minded!

The modules of the angular directive can be divided into the following sections:

    • Restrict: [E] element for manipulating the DOM, [A] property, [C] style, and can also be combined with
    • Priority: Sets the precedence of the current instruction, used when invoking different instructions under the same page
    • Replace: Used to replace DOM elements
    • Template: Defining an instruction Template
    • Templateurl: loading template with URL loading mode
    • Controller: Add controllers in instructions, you can use your own $scope scope
    • Link: For binding DOM element events, you can set data binding

Here's a simple example:

Angular.module (' Expandermodule ', []). Directive (' Expander ',function(){return{restrict:' EA ', replace:true, transclude:true, scope: {title:' =expandertitle '},template:' <div> ' + ' <div class= ' title ' ng-click= ' Toggle () ' >{{title}}</div> ' + ' <div class= ' body ' ng-show= ' ShowMe "ng-transclude></div> ' + ' </div> ', Link:function(scope, element, attrs) {Scope.showme=false; Scope.toggle=functionToggle () {Scope.showme= !scope.showme; }}});

How to use instructions in Angluarjs

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.