简介AngularJS的HTML DOM支持情况
程序员文章站
2022-07-06 18:30:24
以下指令可用于应用程序数据绑定到html dom元素的属性。
添加ng-show属性到一个html按钮,并把它传递模型。绑定模型到复选框,看看以下变化...
以下指令可用于应用程序数据绑定到html dom元素的属性。
添加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,看到以下结果:
推荐阅读
-
详解JavaScript对W3C DOM模版的支持情况
-
详解JavaScript对W3C DOM模版的支持情况
-
简介AngularJS的HTML DOM支持情况
-
查看HTML,CSS,JS,等属性方法对浏览器或者其他设备的支持情况
-
AngularJS在IE8的支持_html/css_WEB-ITnose
-
详解JavaScript对W3C DOM模版的支持情况_基础知识
-
简介AngularJS的HTML DOM支持情况_AngularJS
-
DOM中关于脱离文档流的几种情况分析_html/css_WEB-ITnose
-
详细介绍代码检测HTML5/CSS3新特性的浏览器支持情况
-
简介AngularJS的HTML DOM支持情况