AngularJS ng-non-bindable directive
AngularJS instance
The following paragraphs do not need to be compiled using AngularJS:
<!DOCTYPE html><html><head><meta charset="utf-8"><script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script></head><body><div ng-app=""><p>Use AngularJS: {{ 5+5 }}</p></div><p>Use AngularJS: {{ 5+5 }}</p></div><p>If you don't want to use AngularJS to execute expressions, you can use ng-non-bindable. </p></body></html>Definition and usage
The ng-non-bindable directive is used to tell AngularJS that the current HTML element or its child elements do not need to be compiled.
grammar
<element ng-non-bindable></element>
All HTML elements support this directive.
Parameter value
No parameter value.
The above is the compilation of AngularJS ng-non-bindable instruction information. We will continue to update it in the future. Thank you for your support!