日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > javascript >内容正文

javascript

AngularJS学习笔记

發布時間:2025/1/21 javascript 82 豆豆
生活随笔 收集整理的這篇文章主要介紹了 AngularJS学习笔记 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

2019獨角獸企業重金招聘Python工程師標準>>>

參考:http://campus.codeschool.com/courses/shaping-up-with-angular-js/contents

參考:http://www.ituring.com.cn/article/13474


1)載入AngularJS腳本

<script?src="http://cdn.bootcss.com/angular.js/1.4.5/angular.min.js"></script>



2)ng-app,告訴AngularJS處理整個HTML頁并引導應用

<html?ng-app>


3)使用變量

Hello?{{'World'}}!



4)ng-model,實現雙向綁定

<input?type="text"?ng-model="yourname"?placeholder="World">


5)是否顯示 ng-show

ng-show={{product.images.length}}


6)遍歷 ng-repeat

<div?class="product?row"?ng-repeat="product?in?store.products">

索引$index

<tr?ng-repeat="item?in?items"><td>{{$index?+?1}}</td><td>{{item.name}}</td><td>{{item.price?|?currency}}</td> </tr>


7)Using filters

格式化(時間,大小寫uppercase,貨幣currency,限制limitTo:3)

排序(|orderBy:"-price")


8)引用圖片ng-src

<img?ng-src="{{image}}"?/>


9)一個model可以有多個controller

var?app=angular.module("store",[]); app.controller("storeController",function(){this.products?=?[]; }); app.controller("tabController",function(){this.tab?=?1; });


10)ng-class,添加一個class

?<li?ng-class="{?active:?tab.isSet(1)}">


11)選擇標簽頁

ng-click="tab.setTab(1)" ng-show="tab.isSet(1)"


轉載于:https://my.oschina.net/u/2351685/blog/508690

總結

以上是生活随笔為你收集整理的AngularJS学习笔记的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。