티스토리 뷰
관리서버 대시보드 만드는 과정에서
자동으로 1 - 2 - 3 -4 -> 1 - 2 - 3 - 4 이런식으로 계속 화면이 로테이션이 되야할때
더 좋은 방법이 있겠지만 일단 내가 구현한건
for문을 배열길이의 -1 한 만큼 돌려서
현재 index와 배열의 index가 같을 경우에는 현재 index를 다음 index로 지정해주고
현재 index가 배열의길이 -1과 같을때 ( 배열의 끝의 하나 앞 ) 는 현재 index를 배열의 첫번째 index로 지정해주어
계속 계속 반복되게 해주었다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | if(!DashboardController.isDraggable()){ for(var j=0;j<this.hostIdxParam.length-1;j++){ if(this.hostIdx == this.hostIdxParam[j]){ this.hostIdx = this.hostIdxParam[j+1]; this.dataParam.host_index = this.hostIdx; break; }else if(this.hostIdx == this.hostIdxParam[this.hostIdxParam.length-1]){ //hostIdx가 배열의 마지막일때 this.hostIdx = this.hostIdxParam[0]; this.dataParam.host_index = this.hostIdx; break; } } } | cs |
for문이 아닌 다른방법으로 변경하였는데
전체 개수를 구하고 현재 index +1 한 값을 전체 개수로 나눈 나머지를 구하면
그 나머지는 다음 index가 되고 마지막 index인 경우 저대로 구하면 첫번째 index가 나오게 된다.
1 2 3 4 5 6 | this.server_cnt = this.compo_dataset.server_datasets.length; var index = (this.focus_index+1)%this.server_cnt; this.focus_index = index; this.dataParam.host_index = this.compo_dataset.server_datasets[index].host_index; | cs |
'업무 > 스프링프로젝트' 카테고리의 다른 글
[jquery] input id 또는 name으로 검색할때 like 검색 (0) | 2018.06.29 |
---|---|
[jquery]동적 체크박스 제어 $(document).on (0) | 2018.06.04 |
[JS] radio 버튼클릭 이벤트 / 동적으로 제어하기 (0) | 2017.08.20 |
[JSTL] foreach / Hashmap형태 데이터가 있을때 / 배열일때 / index=varStatus (0) | 2017.08.20 |
[mybatis] foreach 배열 넘길때 파라미터 바인딩 / foreach / @Param (0) | 2017.08.20 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Hyper-V
- Javascript
- java
- 체크박스
- jsp
- 이클립스DB연결
- 스크립팅 요소
- selectbox에 값 매핑
- foreach 배열
- windows 8.1
- 자바
- 게시판페이지설계
- windows hyper-v
- jsp 기초 개념
- input[type=text]초기화
- 윈도우8.1
- 스프링
- input[type=file]초기화
- 제이쿼리
- 게시판table설계
- 자바스크립트
- servlet
- c 태그
- 체크박스전체해제
- SQL
- 체크박스전체선택
- spring
- String[] 파라미터
- servlet게시판
- Split
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함