본문 바로가기

잡단한것들/코딩연습장

key이벤트 테스트

<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8" />
		<meta http-equiv="X-UA-Compatible" content="IE=edge" />
		<meta name="viewport" content="width=device-width, initial-scale=1.0" />
		<title>Document</title>
	</head>
	<body>
		<input
			onkeydown="test('1.keydown',this);"
			onkeypress="test('2.keypress',this);"
			oninput="test('3.input',this);"
			onkeyup="test('4.keyup',this);"
		/>

		<script>
			function test(a0, a1) {
				console.log(a0 + ' :::: ' + a1.value);
			}
		</script>
	</body>
</html>

'잡단한것들 > 코딩연습장' 카테고리의 다른 글

검색 자동완성 구현  (1) 2023.06.13
팝업  (0) 2022.05.23
Vue2-datepicker 한글 커스텀하기  (0) 2021.10.25
[JS] yyyy-mm-dd형태로 만들기 (Date객체 활용하기)  (0) 2021.10.19
자바스크립트 비동기  (0) 2021.09.01