AngularJS Toggle, True/False
AngularJS Toggle, True/False
버튼을 클릭 할 때 HTML 코드 섹션을 표시하고 드롭 다운 메뉴처럼 버튼을 다시 클릭하면 숨기기 버튼이 토글 스위치처럼 동작하도록하십시오.
Example
<div ng-app="myApp" ng-controller="myCtrl">
<button ng-click="myFunc()">Click Me!</button>
<div ng-show="showMe">
<h1>Menu:</h1>
<div>Pizza</div>
<div>Pasta</div>
<div>Pesce</div>
</div>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.showMe = false;
$scope.myFunc = function() {
$scope.showMe = !$scope.showMe;
}
});
</script>
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<button ng-click="myFunc()">Click Me!</button>
<div ng-show="showMe">
<h1>Menu:</h1>
<div>Pizza</div>
<div>Pasta</div>
<div>Pesce</div>
</div>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.showMe = false;
$scope.myFunc = function() {
$scope.showMe = !$scope.showMe;
}
});
</script>
<p>Click the button to show/hide the menu.</p>
</body>
</html>
showMe변수는 부울 값 아웃 시작 false.
이 myFunc함수는 (not) 연산자를 showMe사용하여 변수를 그 반대의 값으로 설정합니다 !.
버튼을 클릭 할 때 HTML 코드 섹션을 표시하고 드롭 다운 메뉴처럼 버튼을 다시 클릭하면 숨기기 버튼이 토글 스위치처럼 동작하도록하십시오.
Example
<div ng-app="myApp" ng-controller="myCtrl">
<button ng-click="myFunc()">Click Me!</button>
<div ng-show="showMe">
<h1>Menu:</h1>
<div>Pizza</div>
<div>Pasta</div>
<div>Pesce</div>
</div>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.showMe = false;
$scope.myFunc = function() {
$scope.showMe = !$scope.showMe;
}
});
</script>
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<button ng-click="myFunc()">Click Me!</button>
<div ng-show="showMe">
<h1>Menu:</h1>
<div>Pizza</div>
<div>Pasta</div>
<div>Pesce</div>
</div>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.showMe = false;
$scope.myFunc = function() {
$scope.showMe = !$scope.showMe;
}
});
</script>
<p>Click the button to show/hide the menu.</p>
</body>
</html>
showMe변수는 부울 값 아웃 시작 false.
이 myFunc함수는 (not) 연산자를 showMe사용하여 변수를 그 반대의 값으로 설정합니다 !.
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 238 | 부트스트랩 | 8년 전 | 1784 | ||
| 237 | 부트스트랩 | 8년 전 | 1592 | ||
| 236 | 부트스트랩 | 8년 전 | 1491 | ||
| 235 | 부트스트랩 | 8년 전 | 1766 | ||
| 234 | 부트스트랩 | 8년 전 | 1333 | ||
| 233 | 부트스트랩 | 8년 전 | 2268 | ||
| 232 | 부트스트랩 | 8년 전 | 1367 | ||
| 231 | 부트스트랩 | 8년 전 | 1723 | ||
| 230 | 부트스트랩 | 8년 전 | 2133 | ||
| 229 | 부트스트랩 | 8년 전 | 2843 | ||
| 228 | 부트스트랩 | 8년 전 | 2675 | ||
| 227 | 부트스트랩 | 8년 전 | 1628 | ||
| 226 | 부트스트랩 | 8년 전 | 2483 | ||
| 225 | 부트스트랩 | 8년 전 | 1643 | ||
| 224 | 부트스트랩 | 8년 전 | 1564 | ||
| 223 | 부트스트랩 | 8년 전 | 1406 | ||
| 222 | 부트스트랩 | 8년 전 | 1942 | ||
| 221 | 부트스트랩 | 8년 전 | 1496 | ||
| 220 | 부트스트랩 | 8년 전 | 1649 | ||
| 219 | 부트스트랩 | 8년 전 | 1201 | ||
| 218 | 부트스트랩 | 8년 전 | 1064 | ||
| 217 | 부트스트랩 | 8년 전 | 1451 | ||
| 216 | 부트스트랩 | 8년 전 | 1330 | ||
| 215 | 부트스트랩 | 8년 전 | 1250 | ||
| 214 | 부트스트랩 | 8년 전 | 1245 | ||
| 213 | 부트스트랩 | 8년 전 | 1385 | ||
| 212 | 부트스트랩 | 8년 전 | 1261 | ||
| 211 | 부트스트랩 | 8년 전 | 1578 | ||
| 210 | 부트스트랩 | 8년 전 | 1571 | ||
| 209 | 부트스트랩 | 8년 전 | 1814 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기