您的位置:首页 > Web前端 > AngularJS

AngularJS Tutorial(1)from w3school

2015-08-04 09:17 639 查看


This Tutorial

This tutorial is specially designed to help you learn AngularJS as quickly and efficiently as possible.

First, you will learn the basics of AngularJS: directives, expressions, filters, modules, and controllers.

Then you will learn everything else you need to know about AngularJS:

Events, DOM, Forms, Input, Validation, Http, and more.

Try it Yourself Examples in Every Chapter

In every chapter, you can edit the examples online, and click on a button to view the result.

AngularJS Example

<!DOCTYPE
html>

<html
lang="en-US">

<script
src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>

<body>

<div
ng-app="">

<p>Name :
<input
type="text" ng-model="name"></p>

<h1>Hello
{{name}}</h1>

</div>

</body>

</html>

Try it Yourself »

What You Should Already Know

Before you study AngularJS, you should have a basic understanding of:

HTML
CSS
JavaScript

AngularJS History

AngularJS version 1.0 was released in 2012.

Miško Hevery, a Google employee, started to work with AngularJS in 2009.

The idea turned out very well, and the project is now officially supported by Google.

AngularJS Examples

W3Schools' AngularJS tutorial contains lots of AngularJS examples!

AngularJS Examples

AngularJS Reference

The AngularJS reference contains all directives and filters used in this tutorial.

AngularJS Reference
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: