๊ด€๋ฆฌ ๋ฉ”๋‰ด

bom's happy life

[JQUERY] ๋ชจ๋‹ฌ์ฐฝ ๊ตฌ์กฐ + ์™ธ๋ถ€ ์˜์—ญ ํด๋ฆญ ์‹œ ๋‹ซํž˜ ๋ณธ๋ฌธ

Deveolpment Study๐Ÿ—‚๏ธ/Javascript

[JQUERY] ๋ชจ๋‹ฌ์ฐฝ ๊ตฌ์กฐ + ์™ธ๋ถ€ ์˜์—ญ ํด๋ฆญ ์‹œ ๋‹ซํž˜

bompeach 2023. 5. 24. 10:51

- ๋ชจ๋‹ฌ ์™ธ๋ถ€ ์˜์—ญ ํด๋ฆญ ์‹œ ํŒ์—… ๋‹ซํž˜

/* ์™ธ๋ถ€์˜์—ญ ํด๋ฆญ์‹œ ํŒ์—… ๋‹ซ๊ธฐ */
$(document).mouseup(function (e){
	if($(".layer_pop").has(e.target).length === 0){
		$(".layer_pop").hide();
	}
});

 

- ESC ๋ˆ„๋ฅผ์‹œ ๋ชจ๋‹ฌ ๋‹ซํž˜

/* ESC ํ‚ค ๋ˆ„๋ฅผ์‹œ ํŒ์—… ๋‹ซ๊ธฐ */
$(document).keydown(function(e){
	//keyCode ๊ตฌ ๋ธŒ๋ผ์šฐ์ €, which ํ˜„์žฌ ๋ธŒ๋ผ์šฐ์ €
    var code = e.keyCode || e.which;
 
    if (code == 27) { // 27์€ ESC ํ‚ค๋ฒˆํ˜ธ
        $('.layer_pop').hide();
    }
});

 

 

https://ssimplay.tistory.com/460 _๋ธ”๋กœ๊ทธ ์ฐธ๊ณ