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사용하여 변수를 그 반대의 값으로 설정합니다 !.
게시판 목록
퍼블리싱강좌
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 28 | 반응형웹 | 9년 전 | 4494 | ||
| 27 | 반응형웹 | 9년 전 | 7561 | ||
| 26 | 부트스트랩 |
|
10년 전 | 14832 | |
| 25 | 부트스트랩 |
|
10년 전 | 9425 | |
| 24 | 표준화 | 11년 전 | 8296 | ||
| 23 | 반응형웹 | 12년 전 | 13494 | ||
| 22 | 표준화 | 12년 전 | 9470 | ||
| 21 | 표준화 | 12년 전 | 16756 | ||
| 20 | 반응형웹 | 13년 전 | 19691 | ||
| 19 | 반응형웹 | 13년 전 | 31014 | ||
| 18 | 반응형웹 | 13년 전 | 36486 | ||
| 17 | 표준화 | 13년 전 | 12910 | ||
| 16 | 반응형웹 | 13년 전 | 29309 | ||
| 15 | 반응형웹 | 13년 전 | 11843 | ||
| 14 | 반응형웹 | 13년 전 | 31755 | ||
| 13 | 반응형웹 | 13년 전 | 29737 | ||
| 12 | 반응형웹 | 13년 전 | 39246 | ||
| 11 | 반응형웹 | 13년 전 | 50643 | ||
| 10 | 반응형웹 | 13년 전 | 32789 | ||
| 9 | 표준화 | 13년 전 | 9157 | ||
| 8 | 표준화 | 13년 전 | 11236 | ||
| 7 | 표준화 | 13년 전 | 9173 | ||
| 6 | 표준화 | 13년 전 | 11143 | ||
| 5 | 표준화 | 13년 전 | 11244 | ||
| 4 | 표준화 | 13년 전 | 14719 | ||
| 3 | 표준화 | 13년 전 | 8071 | ||
| 2 | 표준화 | 13년 전 | 10176 | ||
| 1 | 표준화 | 13년 전 | 11910 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기