談談AngularJs中的隱藏和顯示_AngularJS

來源:互聯網
上載者:User

 AngularJS 通過新的屬性和運算式擴充了 HTML。

AngularJS 可以構建一個單一頁面應用程式(SPAs:Single Page Applications)。

代碼如下所示:

<!DOCTYPE html><html ng-app="a2_12"><head><meta charset="utf-8"><title></title><script type="text/javascript" src="../js/angularJs-1.2.16-min.js"></script><style type="text/css">body{font-size: 12px;}ul{list-style-type: none;width: 408px;margin: 0px;padding: 0px;}div{margin: 8px 0px;}</style></head><body><div ng-controller="c2_12"><div ng-show="{{isShow}}">陶國榮</div><div ng-hide="{{isHide}}">1012@qq.con</div><ul ng-switch on={{switch}}><li ng-switch-when="1">11111111111111111</li><li ng-switch-when="2">22222222222222222</li><li ng-switch-default>33333333333333333</li></ul></div><script type="text/javascript">var a2_12 = angular.module('a2_12', []);a2_12.controller('c2_12', ['$scope', function($scope) {$scope.isShow=true;$scope.isHide=false;$scope.switch=2;}]);</script></body></html> 

ng-switch指令的功能是顯示匹配成功的元素,該指令需要結合ng-switch-when和ng-switch-default指令使用.
當指定的on值與某個或多個添加ng-switch-when指令的元素匹配時,這些元素顯示,未匹配到的元素的隱藏.
如果沒有找到與on值相匹配的元素時,則顯示添加了ng-switch-default指令的元素.

以上所述就是本文給大家介紹的AngularJs中的隱藏和顯示全部內容,希望大家喜歡。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.