<!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 요소를 숨깁니다.
Syntax
모든 HTML 요소는 이 지시어를 지원합니다.
위 내용은 모델의 쇼의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!