AngularJS HTML DOM
以下指令用于将应用程序数据绑定到HTML DOM元素的属性上 –
序号 | 名称和描述 |
---|---|
1 | ng-disabled 禁用给定的控件。 |
2 | ng-show 显示给定的控件。 |
3 | ng-hide 隐藏给定的控件。 |
4 | ng-click 表示AngularJS的点击事件。 |
ng-disabled指令
在HTML按钮上添加ng-disabled属性,并将其传递给一个模型。将该模型绑定到复选框上,并查看变化。
<input type = "checkbox" ng-model = "enableDisableButton">Disable Button
<button ng-disabled = "enableDisableButton">Click Me!</button>
ng-show指令
在HTML按钮上添加ng-show属性,并将其传递给一个模型。将该模型绑定到一个复选框上,然后观察变化。
<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>
<button ng-click = "clickCounter = clickCounter + 1">Click Me!</button>
示例
下面的示例展示了所有上述指令的用法。
testAngularJS.htm
<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 = "https://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js">
</script>
</body>
</html>
输出
在Web浏览器中打开文件 testAngularJS.htm 并查看结果。