"JQuery .one()"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
(사용자 2명의 중간 판 6개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
{{소문자}}
;jQuery .one()
;jQuery .one()
* 어떤 이벤트 발생시 최초 1회만 수행하도록 하는 메소드
* <code>[[jQuery .on()|.on()]]</code>과 유사한데, <code>.one()</code>은 1회만 수행된다는 점이 다름


<source lang='html'>
<syntaxhighlight lang='html'>
<button id="btn-once">한번만 수행됨</button>
<button id="btn-once">한번만 수행됨</button>


11번째 줄: 14번째 줄:
});
});
</script>
</script>
</source>
</syntaxhighlight>
<jsfiddle>bfcqazzj</jsfiddle>
<jsfiddle>bfcqazzj</jsfiddle>


18번째 줄: 21번째 줄:
* [[jQuery .ready()]]
* [[jQuery .ready()]]


==참고 자료==
==참고==
* http://api.jquery.com/one/
* http://api.jquery.com/one/



2020년 11월 2일 (월) 02:53 기준 최신판

1 개요[ | ]

jQuery .one()
  • 어떤 이벤트 발생시 최초 1회만 수행하도록 하는 메소드
  • .on()과 유사한데, .one()은 1회만 수행된다는 점이 다름
<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 }}