angularJS 동적 추가,div 삭제 방법
추 가 를 누 르 면 div 를 추가 할 수 있 습 니 다.삭 제 를 누 르 면 div 를 삭제 할 수 있 습 니 다.
HTML 코드 는 다음 과 같 습 니 다.(CSS 스타일 코드 를 생략 하고 크게 웃 었 습 니 다)
<div class="accordion-inner">
<div class="alert alert-info fade in" ng-repeat="permission in permissions"> :
<select id="" class="grantees" disabled="" style=" margin-bottom: 3px;" ng-model="permission.grantee">
<option value="everyone"> </option>
<option value="authenUsers"> </option>
<option value="me" selected=""> </option>
</select>
<input type="checkbox" checked="" class="permissions" disabled="" ng-model="permission.port1">Open/Download
<input type="checkbox" checked="" class="permissions" disabled="" ng-model="permission.port2">View Permissions
<input type="checkbox" checked="" class="permissions" disabled="" ng-model="permission.port3">Edit Permissions
<button class="btn" type="button" style="float: right;" ng-click="delPermission($index)"> </button>
</div>
<div>
<button class="btn" type="button" ng-click="addPermission($index)"> </button>
</div>
<br>
<div>
<button class="btn btn-primary" type="button"> </button>
<button class="btn" type="button"> </button>
</div>
</div>
추가 및 삭 제 된 JS 코드 는 다음 과 같 습 니 다.
// div
$scope.permissions = [{grantee: "",port1:"",port2:"",port3:""}];
$scope.addPermission = function($index){
$scope.permissions.splice($index + 1, 0,
{grantee:"", port1:"",port2:"",port3:""});
}
// div
$scope.delPermission = function($index){
$scope.permissions.splice($index, 1);
}
이상 의 이 angularJS 는 동적 추 가 를 실현 합 니 다.div 를 삭제 하 는 방법 은 바로 편집장 이 여러분 에 게 공유 한 모든 내용 입 니 다.여러분 에 게 참고 가 되 고 저희 도 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
ionic 숨김tabs 방법일. ng-class="{'tabs-item-hide': $root.hideTabs}"> 이. 이 컨트롤러 밑에 덧붙여라.directive: 삼. html 페이지에서hide-tabs 인용...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.