首页 > 代码库 > angularjs教程——Dom操作相关指令详解
angularjs教程——Dom操作相关指令详解
一、ng-show/ng-hide
<div ng-show="true">{{text}}</div> //显示<div ng-show="false">{{text}}</div>//隐藏
二、ng-if
三、ng-switch
<!DOCTYPE HTML><html ng-app=‘myApp‘><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><script src=http://www.mamicode.com/"angular.min.js"></script><style type="text/css">.red{ background:red;}.yellow{ color:yellow;}</style><script>var m1=angular.module(‘myApp‘,[]);m1.controller(‘Aaa‘,[‘$scope‘,function($scope){ $scope.bBtn=true; }]);</script><title>无标题文档</title></head><body><div ng-controller="Aaa"><input type="checkbox" ng-model="bBtn"> <div ng-switch on="bBtn"> <p ng-switch-default>默认的效果</p> <p ng-switch-when="false">切换的效果</p> </div></div></body></html>
四、ng-open
angularjs教程——Dom操作相关指令详解
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。