次のディレクティブを使用して、HTML DOM 要素の属性にデータ バインディングを適用できます。
ng-show 属性を HTML ボタンに追加し、モデルに渡します。モデルをチェックボックスにバインドすると、次の変更が表示されます。
<input type="checkbox" ng-model="showHide1">Show Button <button ng-show="showHide1">Click Me!</button>
ng-hide コマンド
モデルを介して、HTML ボタンに ng-hide 属性を追加します。モデルをチェックボックスにバインドすると、次の変更が表示されます。
<input type="checkbox" ng-model="showHide2">Hide Button <button ng-hide="showHide2">Click Me!</button>
ng-click コマンド
HTMLボタンにng-click属性を追加し、モデルを更新します。バインディングの変更を確認するには、バインディング 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 を開くと、次の結果が表示されます: