Home Web Front-end JS Tutorial The difference between AngularJs and Angular's ​​commonly used instruction writing methods

The difference between AngularJs and Angular's ​​commonly used instruction writing methods

Jul 09, 2018 pm 04:21 PM
angular.js

This article mainly introduces the difference between AngularJs and Angular commonly used instructions. It has a certain reference value. Now I share it with you. Friends in need can refer to it

1: angularjs Directive

1.ng-bind

Replace the content of an HTML element with the value of a given variable or expression

<p ng-bind="{{text}}"></p>
Copy after login

2.ng-blur

Function that needs to be executed when the HTML element loses focus (<a>, <input>, <select>, <textarea>supported)

<input ng-blur="pay()" />
Copy after login

3.ng-checked/ng-disabled

ng-checked sets the checked attribute of the checkbox or radio button
If the ng-disabled expression returns true, the form field will be disabled (<input>, <select>, or <textarea>)

<input type="checkbox|radio" ng-checked="flag" ng-disabled="flag"></input>

//flag为布尔类型
Copy after login

4.ng-class

Give HTML elements dynamic Bind one or more CSS classes.

//写法一
<p ng-class="home"></p>

//写法二
<p ng-class="{&#39;red&#39;:flag,&#39;green&#39;:&#39;!flag&#39;}"></p>
//flag为true则添加red类名,false则添加green类名
Copy after login

5.ng-click

<button ng-click="addpay($event)">OK</button>
//$event为当前元素的多种属性
Copy after login

6.ng-repeat

<p ng-repeat="(index,item) in list"></p>
// 每项值:{{item}}
// 下标:{{index}}
Copy after login
  • ng -app defines the root element of the application.

  • ng-bind Binds HTML elements to application data

  • ng-bind-html Binds innerHTML of HTML elements to application data , and remove dangerous characters in HTML strings

  • ng-bind-template Specifies the text content to be replaced with a template

  • ng-blur Specifies the behavior of the blur event

  • ng-change Specifies the expression to be executed when the content changes

  • ng-checked Specifies whether the element is selected

  • ng-class Specifies the CSS class used by HTML elements

  • ng-class-even Similar to ng-class, but only starts on even lines Function

  • ng-class-odd Similar to ng-class, but only works in odd rows

  • ng-click Defines when the element is clicked Behavior

  • ng-cloak Prevents the application from flickering when it is about to load

  • ng-controller Defines the application's controller object

  • ng-copy Specifies the behavior of copy events

  • ng-csp Modifies the security policy of content

  • ng -cut Specifies the behavior of the cut event

  • ##ng-dblclick Specifies the behavior of the double-click event

  • ng-disabled Specifies whether an element is disabled

  • ng-focus Specifies the behavior of focus events

  • ng-form Specifies the HTML form to inherit the controller form

  • ng-hide Hide or show HTML elements

  • ng-href Specify links for the

    <a> elements

  • ng-if If the condition is false, remove the HTML element

  • ng-include Include the HTML file in the application

  • ng-init Define the initialization value of the application

  • ng-jq Define the library that the application must use, such as: jQuery

  • ##ng-keydown Specify the key to press Event behavior
  • ng-keypress Specifies the behavior of the key press event
  • ng-keyup Specifies the behavior of the key release event
  • ng-list Convert text to list (array)
  • ##ng-model Bind the value of HTML controller to application data
  • ng-model-options Specifies how to update the model
  • ng-mousedown Specifies the behavior when the mouse button is pressed
  • ng-mouseenter Specifies the behavior when the mouse pointer passes through the element
  • ng-mouseleave Specifies the behavior when the mouse pointer leaves the element
  • ng- mousemove Specifies the behavior of the mouse pointer when moving within the specified element
  • ##ng-mouseover Specifies the behavior of the mouse pointer when it is located above the element

  • ng- mouseup specifies the behavior when the mouse button is released on the element

  • ng-non-bindable specifies that the element or sub-element cannot bind data

  • ng-open Specify the open attribute of the element

  • ng-options Specify

  • ## in the
  • <select>

    list #ng-paste Specifies the behavior of paste events

  • ng-pluralize Displays information according to localization rules

  • ng-readonly Specifies the readonly attribute of the element

  • ng-repeat Defines the template for each data in the collection

  • ng-selected Specifies the element's selected attribute

  • ng-show Show or hide the HTML element

  • ng-src Specify the src attribute of the element

  • ng-srcset Specifies the srcset attribute of the element

  • ng-style    指定元素的 style 属性

  • ng-submit    规定 onsubmit 事件发生时执行的表达式

  • ng-switch    规定显示或隐藏子元素的条件

  • ng-transclude    规定填充的目标位置

  • ng-value    规定 input 元素的值

详情参考:http://www.runoob.com/angular...

二:angular指令

imageUrl 属性:

<img [src]="imageUrl">
Copy after login

[disabled]当组件为 isUnchanged( 未改变 ) 时禁用一个按钮:

<button [disabled]="isUnchanged">按钮是禁用的</button>
Copy after login

设置指令的属性:

<p [ngClass]="classes">[ngClass]绑定到classes 属性</p>
Copy after login

表格的colspan/rowspan

<table border=1>
  <tr><td [attr.colspan]="1 + 1">One-Two</td></tr>
  <tr><td>Five</td><td>Six</td></tr>
</table>
Copy after login

[(NgModel)]

<input [(ngModel)]="currentUser.firstName">
Copy after login

NgIf

<p *ngIf="currentUser">Hello,{{currentUser.firstName}}</p>
Copy after login

NgFor

<p *ngFor="let user of users; let i=index">{{i + 1}} - {{user.fullName}}</p>
Copy after login

(click)

<button type="submit" class="btn btn-primary" (click)="hide()">确定</button>
Copy after login

[(checked)]

<input type="checkbox"  [(checked)]="checkflag">
Copy after login
  • common

        NgClass
        NgComponentOutlet
        NgForOf
        NgIf
        NgPlural
        NgPluralCase
        NgStyle
        NgSwitch
        NgSwitchCase
        NgSwitchDefault
        NgTemplateOutlet
    Copy after login
  • forms

        CheckboxControlValueAccessor
        CheckboxRequiredValidator
        DefaultValueAccessor
        EmailValidator
        FormArrayName
        FormControlDirective
        FormControlName
        FormGroupDirective
        FormGroupName
        MaxLengthValidator
        MinLengthValidator
        NgControlStatus
        NgControlStatusGroup
        NgForm
        NgModel
        NgModelGroup
        NgSelectOption
        PatternValidator
        RadioControlValueAccessor
        RequiredValidator
        SelectControlValueAccessor
        SelectMultipleControlValueAccessor
    Copy after login
  • router

        RouterLink
        RouterLinkActive
        RouterLinkWithHref
        RouterOutlet
    Copy after login

详情参考:https://angular.io/api/

以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!

相关推荐:

Jquery以及AngularJS中Get/Post的传参

The above is the detailed content of The difference between AngularJs and Angular's ​​commonly used instruction writing methods. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Angular learning talks about standalone components (Standalone Component) Angular learning talks about standalone components (Standalone Component) Dec 19, 2022 pm 07:24 PM

This article will take you to continue learning angular and briefly understand the standalone component (Standalone Component) in Angular. I hope it will be helpful to you!

Detailed explanation of angular learning state manager NgRx Detailed explanation of angular learning state manager NgRx May 25, 2022 am 11:01 AM

This article will give you an in-depth understanding of Angular's state manager NgRx and introduce how to use NgRx. I hope it will be helpful to you!

What should I do if the project is too big? How to split Angular projects reasonably? What should I do if the project is too big? How to split Angular projects reasonably? Jul 26, 2022 pm 07:18 PM

The Angular project is too large, how to split it reasonably? The following article will introduce to you how to reasonably split Angular projects. I hope it will be helpful to you!

Let's talk about how to customize the angular-datetime-picker format Let's talk about how to customize the angular-datetime-picker format Sep 08, 2022 pm 08:29 PM

How to customize the angular-datetime-picker format? The following article talks about how to customize the format. I hope it will be helpful to everyone!

A brief analysis of independent components in Angular and see how to use them A brief analysis of independent components in Angular and see how to use them Jun 23, 2022 pm 03:49 PM

This article will take you through the independent components in Angular, how to create an independent component in Angular, and how to import existing modules into the independent component. I hope it will be helpful to you!

A step-by-step guide to understanding dependency injection in Angular A step-by-step guide to understanding dependency injection in Angular Dec 02, 2022 pm 09:14 PM

This article will take you through dependency injection, introduce the problems that dependency injection solves and its native writing method, and talk about Angular's dependency injection framework. I hope it will be helpful to you!

Angular's :host, :host-context, ::ng-deep selectors Angular's :host, :host-context, ::ng-deep selectors May 31, 2022 am 11:08 AM

This article will give you an in-depth understanding of several special selectors in Angular: host, :host-context, ::ng-deep. I hope it will be helpful to you!

Deep understanding of @Component decorator in angular Deep understanding of @Component decorator in angular May 27, 2022 pm 08:13 PM

Component is a subclass of Directive, which is a decorator used to mark a class as an Angular component. The following article will give you an in-depth understanding of the @Component decorator in angular. I hope it will be helpful to you.

See all articles