웹프로그래밍

Global It Leader!!


jQuery


 
 

중복안하는 랜덤 숫자 발생하기

페이지 정보

작성자 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 7,013회 작성일 10-11-10 09:17

본문

<script>
function setRand(min,max,number) {
    randResult = new Array();
    randList = new Array();
    for(i = min; i <= max; i++) {
    randList.push(i);
    }

    for(i = 0; i < number; i++) {
    getRand();
    }
    alert(randResult);
}

function getRand() {
    randNumber = Math.floor(Math.random() * randList.length);
    randResult.push(randList[randNumber]);
    randList.splice(randNumber,1);
}

//Min, Max, Number
setRand(7,10,3);
</script>

출처 : phpschool

댓글목록

등록된 댓글이 없습니다.

전체 148
게시물 검색
jQuery 목록
번호 제목 글쓴이 조회 날짜
8 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6332 12-16
열람중 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 7014 11-10
6 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6412 10-03
5 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 8119 08-28
4 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 8461 06-15
3 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 6902 05-10
2 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 11252 04-29
1 no_profile 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 8856 03-14