[Angularjs] ANGULARJS series notes (eight) event

Source: Internet
Author: User

AngularJs has its own HTML Event

Ng-click Directive

the ng-click directive defines AngularJs Click events

When the button is clicked, assign the Count variable and add 1 to the Count variable, showing the count variable

  <Body>    <DivNg-app= "Home">       <DivNg-controller= "Ngclicktest">Test Ng-click Instructions<ButtonNg-click= "Count=count+1">Click</Button>{{count}}</Div>    </Div>  </Body>  <Scripttype= "Text/javascript">  //instantiate Application object, parameter: module name, empty array  varapp=Angular.module ("Home",[]); App.controller ("ngclicktest",function(){})  </Script>

Ng-click instruction with ng-hide display hidden HTML

Bind a function to the Ng-click directive, assign a variable to the ng-hide instruction, assign the default variable and the allocation function in the controller

  <Body>    <DivNg-app= "Home">       <DivNg-controller= "Ngclicktest">Test Ng-click Instructions<ButtonNg-click= "Toggle ()">Click</Button>        <DivNg-hide= "Flag">Name: {{name}}</Div>      </Div>    </Div>  </Body>  <Scripttype= "Text/javascript">  //instantiate Application object, parameter: module name, empty array  varapp=Angular.module ("Home",[]); //call the Controller method of the App object, parameter: Director name, anonymous functionApp.controller ("ngclicktest",function($scope) {//Assigning variables$scope. Name="Taoshan"; $scope. Flag=false; //Assigning a past function$scope. Toggle=function(){      //functions play a role$scope. Flag=!$scope. Flag; }  })  </Script>

[Angularjs] ANGULARJS series notes (eight) event

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.