Name |
Description |
ngJq |
Use this directive to force the angular.element library. This should be used to force either jqLite by leaving ng-jq blank or setting the name of the jquery variable under window (eg. jQuery). |
ngApp |
Use this directive toauto-bootstrapan AngularJS application. ThengApp directive designates theroot elementof the application and is typically placed near the root element of the page - e.g. on the<body> or<html> tags. |
a |
Modifies the default behavior of the html a tag so that the default action is prevented when the href attribute is empty. |
ngHref |
Using AngularJS markup like{{hash}} in an href attribute will make the link go to the wrong URL if the user clicks it before AngularJS has a chance to replace the{{hash}} markup with its value. Until AngularJS replaces the markup the link will be broken and will most likely return a 404 error. ThengHref directive solves this problem. |
ngSrc |
Using AngularJS markup like{{hash}} in asrc attribute doesn't work right: The browser will fetch from the URL with the literal text{{hash}} until AngularJS replaces the expression inside{{hash}} . ThengSrc directive solves this problem. |
ngSrcset |
Using AngularJS markup like{{hash}} in asrcset attribute doesn't work right: The browser will fetch from the URL with the literal text{{hash}} until AngularJS replaces the expression inside{{hash}} . ThengSrcset directive solves this problem. |
ngDisabled |
This directive sets thedisabled attribute on the element (typically a form control,e.g.input ,button ,select etc.) if theexpressioninsidengDisabled evaluates to truthy. |
ngChecked |
Sets thechecked attribute on the element,if the expression insidengChecked is truthy. |
ngReadonly |
Sets thereadonly attribute on the element,if the expression insidengReadonly is truthy. Note thatreadonly applies only toinput elements with specific types.See the input docs on MDNfor more information. |
ngSelected |
Sets theselected attribute on the element,if the expression insidengSelected is truthy. |
ngOpen |
Sets theopen attribute on the element,if the expression insidengOpen is truthy. |
ngForm |
Nestable alias ofform directive. HTML does not allow nesting of form elements. It is useful to nest forms,for example if the validity of a sub-group of controls needs to be determined. |
form |
Directive that instantiatesFormController. |
textarea |
HTML textarea element control with AngularJS data-binding. The data-binding and validation properties of this element are exactly the same as those of theinput element. |
input |
HTML input element control. When used together withngModel ,it provides data-binding,input state control,and validation. Input control follows HTML5 input types and polyfills the HTML5 validation behavior for older browsers. |
ngValue |
Binds the given expression to the value of the element. |
ngBind |
ThengBind attribute tells AngularJS to replace the text content of the specified HTML element with the value of a given expression,and to update the text content when the value of that expression changes. |
ngBindTemplate |
ThengBindTemplate directive specifies that the element text content should be replaced with the interpolation of the template in thengBindTemplate attribute. UnlikengBind ,thengBindTemplate can contain multiple{{ }} expressions. This directive is needed since some HTML elements (such as TITLE and OPTION) cannot contain SPAN elements. |
ngBindHtml |
Evaluates the expression and inserts the resulting HTML into the element in a secure way. By default,the resulting HTML content will be sanitized using the$sanitizeservice. To utilize this functionality,ensure that$sanitize is available,for example,by includingngSanitize in your module's dependencies (not in core AngularJS). In order to usengSanitize in your module's dependencies,you need to include "angular-sanitize.js" in your application. |
ngChange |
Evaluate the given expression when the user changes the input. The expression is evaluated immediately,unlike the JavaScript onchange event which only triggers at the end of a change (usually,when the user leaves the form element or presses the return key). |
ngClass |
ThengClass directive allows you to dynamically set CSS classes on an HTML element by databinding an expression that represents all classes to be added. |
ngClassOdd |
ThengClassOdd andngClassEven directives work exactly asngClass,except they work in conjunction withngRepeat and take effect only on odd (even) rows. |
ngClassEven |
ThengClassOdd andngClassEven directives work exactly asngClass,except they work in conjunction withngRepeat and take effect only on odd (even) rows. |
ngCloak |
ThengCloak directive is used to prevent the AngularJS html template from being briefly displayed by the browser in its raw (uncompiled) form while your application is loading. Use this directive to avoid the undesirable flicker effect caused by the html template display. |
ngController |
ThengController directive attaches a controller class to the view. This is a key aspect of how angular supports the principles behind the Model-View-Controller design pattern. |
ngCsp |
AngularJS has some features that can conflict with certain restrictions that are applied when usingCSP (Content Security Policy)rules. |
ngClick |
The ngClick directive allows you to specify custom behavior when an element is clicked. |
ngDblclick |
ThengDblclick directive allows you to specify custom behavior on a dblclick event. |
ngMousedown |
The ngMousedown directive allows you to specify custom behavior on mousedown event. |
ngMouseup |
Specify custom behavior on mouseup event. |
ngMouseover |
Specify custom behavior on mouSEOver event. |
ngMouseenter |
Specify custom behavior on mouseenter event. |
ngMouseleave |
Specify custom behavior on mouseleave event. |
ngMousemove |
Specify custom behavior on mousemove event. |
ngKeydown |
Specify custom behavior on keydown event. |
ngKeyup |
Specify custom behavior on keyup event. |
ngKeypress |
Specify custom behavior on keypress event. |
ngSubmit |
Enables binding AngularJS expressions to onsubmit events. |
ngFocus |
Specify custom behavior on focus event. |
ngBlur |
Specify custom behavior on blur event. |
ngCopy |
Specify custom behavior on copy event. |
ngCut |
Specify custom behavior on cut event. |
ngPaste |
Specify custom behavior on paste event. |
ngIf |
ThengIf directive removes or recreates a portion of the DOM tree based on an {expression}. If the expression assigned tongIf evaluates to a false value then the element is removed from the DOM,otherwise a clone of the element is reinserted into the DOM. |
ngInclude |
Fetches,compiles and includes an external HTML fragment. |
ngInit |
ThengInit directive allows you to evaluate an expression in the current scope. |
ngList |
Text input that converts between a delimited string and an array of strings. The default delimiter is a comma followed by a space - equivalent tong-list="," . You can specify a custom delimiter as the value of thengList attribute - for example,ng-list=" | " . |
ngModel |
ThengModel directive binds aninput ,select ,textarea (or custom form control) to a property on the scope usingNgModelController,which is created and exposed by this directive. |
ngModelOptions |
This directive allows you to modify the behavIoUr ofngModel directives within your application. You can specify anngModelOptions directive on any element. AllngModel directives will use the options of their nearestngModelOptions ancestor. |
ngNonBindable |
ThengNonBindable directive tells AngularJS not to compile or bind the contents of the current DOM element. This is useful if the element contains what appears to be AngularJS directives and bindings but which should be ignored by AngularJS. This could be the case if you have a site that displays snippets of code,for instance. |
ngOptions |
ThengOptions attribute can be used to dynamically generate a list of<option> elements for the<select> element using the array or object obtained by evaluating thengOptions comprehension expression. |
ngPluralize |
ngPluralize is a directive that displays messages according to en-US localization rules. These rules are bundled with angular.js,but can be overridden (seeAngularJS i18ndev guide). You configure ngPluralize directive by specifying the mappings betweenplural categoriesand the strings to be displayed. |
ngRepeat |
ThengRepeat directive instantiates a template once per item from a collection. Each template instance gets its own scope,where the given loop variable is set to the current collection item,and$index is set to the item index or key. |
ngShow |
ThengShow directive shows or hides the given HTML element based on the expression provided to thengShow attribute. |
ngHide |
ThengHide directive shows or hides the given HTML element based on the expression provided to thengHide attribute. |
ngStyle |
ThengStyle directive allows you to set CSS style on an HTML element conditionally. |
ngSwitch |
ThengSwitch directive is used to conditionally swap DOM structure on your template based on a scope expression. Elements withinngSwitch but withoutngSwitchWhen orngSwitchDefault directives will be preserved at the location as specified in the template. |
ngTransclude |
Directive that marks the insertion point for the transcluded DOM of the nearest parent directive that uses transclusion. |
script |
Load the content of a<script> element into$templateCache ,so that the template can be used byngInclude ,ngView ,ordirectives. The type of the<script> element must be specified astext/ng-template ,and a cache name for the template must be assigned through the element'sid ,which can then be used as a directive'stemplateUrl . |
select |
HTMLselect element with AngularJS data-binding. |
ngRequired |
ngrequired adds the requiredvalidator tongModel . It is most often used forinput andselect controls,but can also be applied to custom controls. |
ngPattern |
ngPattern adds the patternvalidator tongModel . It is most often used for text-basedinput controls,but can also be applied to custom text-based controls. |
ngMaxlength |
ngMaxlength adds the maxlengthvalidator tongModel . It is most often used for text-basedinput controls,but can also be applied to custom text-based controls. |
ngMinlength |
ngMinlength adds the minlengthvalidator tongModel . It is most often used for text-basedinput controls,but can also be applied to custom text-based controls. |