- ng-switch
- ng-change
- ng-include
- ng-src
- ng-href
ng-switch
- 可以根據ng-switch去篩選要選擇的內容。
- 通常會和ng-option的下拉選單一起搭配使用。
|
|
|
|
ng-change
- 當我們改變輸入的數值,就會執行ng-change裡的事情。
|
|
|
|
ng-include
- ng-include 是angular用來載入html的指令。
|
|
|
|
ng-src
- ng-src是用來取代html中 img 標籤裡的src屬性。
- 由於AngularJS是整個網站載完後才開始編譯,
- 使用ng-src可以解決還沒載入完html發生的錯誤。
|
|
|
|
ng-href
- ng-href是用來取代html中 a 標籤裡的href屬性。
- 如果Angular還沒載入或載入失敗,會直接讓href讀取到{ { }}的內容,
- 而a 標籤裡的href屬性無法辨識{ { }},就會連結到404的錯誤頁面。
|
|
|
|