1、問題背景
AngularJS的ng-show指令,當值為true,HTML元素顯示;當值為false,HTML元素隱藏
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>AngularJS之ng-show指令</title> <script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script> </head> <body> <p ng-app="" ng-init="flag=true"> <button ng-show="flag">查询</button><br> <input type="checkbox" ng-model="flag" />老鼠<br> <input type="radio" ng-show="!flag" />猫<br> <label>{{flag}}</label> </p> </body> </html>
3、實作源碼
(1)勾選框
(2)取消勾選複選框
取消勾選複選框,按鈕隱藏,單選框顯示
ngularJS之ng-show指令 的內容,更多相關內容請關注PHP中文網(www.php.cn)!