ng-model ng-show
Posted zhoudingzhao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ng-model ng-show相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script> </head> <body ng-app=""> HTML: <input type="checkbox" ng-model="myVar"> {{myVar}} <div ng-show="myVar"> <h1>Welcome</h1> <p>Welcome to my home.</p> </div> </body> </html>
ng-show 指令在表达式为 true 时显示指定的 HTML 元素,否则隐藏指定的 HTML 元素。
语法
<element ng-show="expression"></element>
所有的 HTML 元素支持该指令。
以上是关于ng-model ng-show的主要内容,如果未能解决你的问题,请参考以下文章