JQuery .one()

Jmnote (토론 | 기여)님의 2017년 1월 8일 (일) 16:18 판 (새 문서: ==개요== ;jQuery .one() <source lang='console'> <button id="btn-once">한번만 수행됨</button> <script src="//code.jquery.com/jquery.min.js"></script> <script> $("#btn-once")....)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

jQuery .one()
<button id="btn-once">한번만 수행됨</button>

<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$("#btn-once").one("click", function() {
  alert('안녕하슈');
});
</script>

2 같이 보기

3 참고 자료

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