我是靠谱客的博主 难过中心,最近开发中收集的这篇文章主要介绍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?1.1.10"></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的详细内容,更多请关注靠谱客其它相关文章!

最后

以上就是难过中心为你收集整理的ng-model ng-show的全部内容,希望文章能够帮你解决ng-model ng-show所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(73)

评论列表共有 0 条评论

立即
投稿
返回
顶部