AngularJS HTML DOM詳解及範例程式碼_AngularJS

來源:互聯網
上載者:User

以下指令可用於應用程式資料綁定到HTML DOM元素的屬性。

S.No. 名稱 描述
1 ng-disabled 禁用一個給定的控制
2 ng-show 顯示一個給定的控制
3 ng-hide 隱藏在給定的控制
4 ng-click 表示AngularJS click事件

 ng-disabled 指令

添加ng-disabled屬性到一個HTML按鈕,通過它的模型。該模型繫結到複選框,看看以下變化。

<input type="checkbox" ng-model="enableDisableButton">Disable Button<button ng-disabled="enableDisableButton">Click Me!</button>

ng-show 指令

添加ng-show屬性到一個HTML按鈕,並把它傳遞模型。綁定模型到複選框,看看以下變化。

<input type="checkbox" ng-model="showHide1">Show Button<button ng-show="showHide1">Click Me!</button>

ng-hide 指令

添加ng-hide屬性為HTML按鈕,通過它的模型。綁定模型到複選框,看看以下變化。

<input type="checkbox" ng-model="showHide2">Hide Button<button ng-hide="showHide2">Click Me!</button>

ng-click 指令

添加ng-click屬性為HTML按鈕並更新模型。模型繫結HTML看看結合的變化。

<p>Total click: {{ clickCounter }}</p></td><button ng-click="clickCounter = clickCounter + 1">Click Me!</button>

例子

下面的例子將展示上述所有指令。

testAngularJS.html

<html><head><title>AngularJS HTML DOM</title></head><body><h2>AngularJS Sample Application</h2><div ng-app=""><table border="0"><tr>  <td><input type="checkbox" ng-model="enableDisableButton">Disable Button</td>  <td><button ng-disabled="enableDisableButton">Click Me!</button></td></tr><tr>  <td><input type="checkbox" ng-model="showHide1">Show Button</td>  <td><button ng-show="showHide1">Click Me!</button></td></tr><tr>  <td><input type="checkbox" ng-model="showHide2">Hide Button</td>  <td><button ng-hide="showHide2">Click Me!</button></td></tr><tr>  <td><p>Total click: {{ clickCounter }}</p></td>  <td><button ng-click="clickCounter = clickCounter + 1">Click Me!</button></td></tr></table></div><script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script></body></html>

輸出

在Web瀏覽器開啟textAngularJS.html,看到以下結果:

以上就是對AngularJS HTML DOM資料的整理,後續繼續補充相關資料,謝謝大家對本站的支援!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.