Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

AngularJS tutorial


May 07, 2021 AngularJS


Table of contents


AngularJS tutorial


AngularJS tutorial

AngularJS is an excellent front-end JS framework.

AngularJS extends HTML with new properties and expressions.

AngularJS can build a single page application (SPAs: Single Page Applications).

AngularJS is easy to learn.

Start learning AngularJS now!



Each chapter has an example

In each chapter, you can edit the instance online and click the button to see the results.

AngularJS instance

<!DOCTYPE html>
<html>

<body>

<div ng-app="">
<p>在输入框中尝试输入:</p>
<p>姓名:<input type="text" ng-model="name"></p>
<p ng-bind="name"></p>
</div>

<script src="//www.w3cschool.cn/try/angularjs/1.2.5/angular.min.js"></script>

</body>
</html>

Try it out . . .


What you need to know before you read this tutorial:

Before you start learning AngularJS, you need to have the following basics:


AngularJS History

AngularJS is a relatively new technology, and version 1.0 was released in 2012.

AngularJS has been developed since 2009 by Google employee Miško Hevery.

This is a very good idea, the project is currently officially supported by Google, and a full-time development team continues to develop and maintain the library.


AngularJS instance

This tutorial contains a large number of AngularJS instances!

AngularJS instance


AngularJS reference manual

The reference manual contains all the instructions and filters used in this tutorial.

AngularJS reference manual