자바스크립트 UUID 생성

Jmnote (토론 | 기여)님의 2016년 2월 4일 (목) 17:55 판

1 개요

자바스크립트 uuidgen()
자바스크립트 UUID 생성
<script>
  function guid() {
    function s4() {
      return ((1 + Math.random()) * 0x10000 | 0).toString(16).substring(1);
    }
    return s4() + s4() + '-' + s4() + '-' + s4() + '-' + s4() + '-' + s4() + s4() + s4();
  }

  function show_uuid() {
    document.getElementById('uuid').value = guid();
  }

</script>
<button onclick='show_uuid()'>생성</button>
<input type='text' size='40' id='uuid' />

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}