1、問題背景
AngularJS的ng-hide指令,當其值為true,隱藏HTML元素;當值為false,顯示HTML元素
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>AngularJS之ng-hide指令</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-hide="flag">查询</button><br> <input type="checkbox" ng-model="flag" />老鼠<br> <input type="radio" ng-hide="!flag" />猫<br> <label>{{flag}}</label> </p> </body> </html>3、實現結果
(1)勾選卷
按鈕顯示,單選框隱藏
內容請關注PHP中文網( www.php.cn)!