Home > Web Front-end > JS Tutorial > body text

AngularJS ng-hide directive

黄舟
Release: 2017-02-16 13:30:46
Original
1371 people have browsed it

1. Problem background

AngularJS’s ng-hide directive, when its value is true, hides HTML elements; when its value is false, displays HTML elements


##2. Implementation source code

<!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>
Copy after login


3. Realization result


(1) Check the check box

The button is hidden and the radio button is displayed

AngularJS ng-hide directive

## (2) Uncheck the check box

The button is displayed and the radio button is hidden

AngularJS ng-hide directive

Above This is the content of the ng-hide directive of AngularJS. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!