AngularJS快速入門指南01 導言

2021-09-28 22:25:43 字數 1148 閱讀 9266

angularjs使用新的attributes擴充套件了html

angularjs對單頁面應用的支援非常好(spas)

angularjs非常容易學習

本指南旨在幫助你盡可能快速而有效地學習angularjs。通過該指南你會學習到angularjs的一些基本特性,例如指令、表示式、過濾器、模組和控制器等。以及其它所有你需要知道的有關angularjs的東西,如事件、dom節點、表單、使用者輸入、資料驗證、http物件等。

<

script

src=""

>

script

>

<

body

>

<

div

="">

<

p>input something in the input box:

p>

<

p>name : <

input

type

="text"

ng-model

="name"

placeholder

="enter name here"

/>

p>

<

h1>hello }

h1>

div>

body

>

執行

在學習angularjs之前,你應該已經具備了這些基本技能:

angularjs 1.0在2023年的時候就已經發布了。

miško hevery是google的一名員工,他從2023年就開始angularjs的開發工作。

angularjs的想法和思路非常好,該專案仍在繼續當中,目前由google提供官方技術支援。

本指南所包含的所有示例**均可在這裡找到。

angularjs示例**

本指南中所有使用過的的指令和過濾器均可在這裡找到。

angularjs快速參考

下一章 - angularjs快速入門指南02:介紹

更多專業前端知識,請上

【猿2048】www.mk2048.com

AngularJS快速入門指南11 事件

angularjs擁有自己的html事件指令。ng click指令定義了angularjs的click事件。div ng controller myctrl button ng click count count 1 click me button p p div 執行 ng hide true 將...

AngularJS快速入門指南01 導言

angularjs使用新的attributes擴充套件了html angularjs對單頁面應用的支援非常好 spas angularjs非常容易學習 本指南旨在幫助你盡可能快速而有效地學習angularjs。通過該指南你會學習到angularjs的一些基本特性,例如指令 表示式 過濾器 模組和控制...

AngularJS快速入門指南10 DOM節點

div p button ng disabled myswitch click me button p p input type checkbox ng model myswitch button p div 執行 解釋 ng model指令將html checkbox元素的value值繫結到mys...