Lang/Javascript

JQuery * .one() ์ด๋ฒคํŠธ ํ•œ๋ฒˆ๋งŒ ์‚ฌ์šฉํ•˜๊ธฐ! ( feat .on() .off() )

___l_i_ * 2021. 12. 15. 11:40

์ตœ์ดˆ 1ํšŒ๋งŒ ์ด๋ฒคํŠธ๋ฅผ ์‹คํ–‰ํ•˜๊ณ  ์ดํ›„ ์ด๋ฒคํŠธ ๋™์ž‘์„ ํ•˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค.

์‚ฌ์šฉ๋ฐฉ๋ฒ•์€ .on()๊ณผ ๋™์ผํ•˜๋ฉฐ ์ƒ์„ธ ๋‚ด์šฉ์€ ์•„๋ž˜ Documentation์„ ์ฐธ๊ณ ํ•˜์„ธ์š”!

 

 

.one() | jQuery API Documentation

Description: Attach a handler to an event for the elements. The handler is executed at most once per element per event type. The .one() method is identical to .on(), except that the handler for a given element and event type is unbound after its first invo

api.jquery.com

 

์ด์ œ ๋ช‡๊ฐœ์˜ ๋™์ž‘์„ ์‚ดํŽด๋ณผ๊นŒ์š”?

ํ•œ๋ฒˆ๋งŒ ๋™์ž‘ํ•˜๋Š” ๋ฒ„ํŠผ !

์œ„์— ์„ค๋ช…ํ–ˆ๋˜ .one() ํ•จ์ˆ˜๋กœ ๋™์ž‘ํ•˜๋Š” ๋ฒ„ํŠผ์ž…๋‹ˆ๋‹ค.

See the Pen Untitled by leni-s (@byleni) on CodePen.

 

๋‹ค์Œ์€ .on() / .off() ํ•จ์ˆ˜๋กœ ๋™์ž‘ํ•˜๋Š” ๋ฒ„ํŠผ์ž…๋‹ˆ๋‹ค.

See the Pen Untitled by leni-s (@byleni) on CodePen.

 

๋” ํ•ด๋ณด๊ธฐ

๋‹ค๋ฅธ ๋ฒ„ํŠผ์„ ๋ˆŒ๋ €์„ ๋•Œ event off ํ•˜๊ธฐ

See the Pen Untitled by leni-s (@byleni) on CodePen.

 

 

 


Thanks for ๐Ÿ™ˆ