AngularJS教程之簡單應用程式樣本_AngularJS

來源:互聯網
上載者:User

按以下步驟來建立AngularJS應用

 第1步:載入架構

作為一個純粹的JavaScript架構,它可以使用<script>標籤來添加。

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

第2步:使用ng-app指令定義AngularJS應用

<div ng-app="">...</div>

第3步:用 ng-model指令定義的模式名稱

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

第4步:用ng-bind指令將上述模型中的值綁定定義

<p>Hello <span ng-bind="name"></span>!</p>

按以下步驟來運行AngularJS應用

使用上面提到的三個步驟在HTML頁中。

testAngularJS.html

<html><title>AngularJS First Application</title><body><h1>Sample Application</h1><div ng-app=""> <p>我的名字: <input type="text" ng-model="name"></p> <p>Hello, <span ng-bind="name"></span>!</p></div><script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script></body></html>

輸出

在Web瀏覽器開啟textAngularJS.html。請輸入姓名並看到的結果。

如何讓AngularJS與HTML整合

ng-app指令指示AngularJS應用的開始。

ng-model指令建立一個名為“name”的模型變數在HTML頁面中,並有ng-app指令在div內使用。

ng-bind使用模型名稱只要在文字框中使用者輸入的東西顯示在HTML span標籤。

結束</ div>標記表示AngularJS應用程式的結束。

以上就是AngularJS簡單應用程式,後續繼續整理相關資料,謝謝大家對本站的支援。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.