<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>텍스트상자의 엔터키 이벤트 잡기</title>
<script>
function EnterKeyTest(event)
{
// 텍스트박스에 엔터키 입력시에만 반응
if (event.which == 13 || event.keyCode == 13) {
//alert(''엔터키 입력했군요.'');
var txtInput = document.getElementById(''txtInput'');
window.alert(txtInput.value);
return false;
}
return true;
}
</script>
</head>
<body>
<input type="text" id="txtInput"
onkeypress="return EnterKeyTest(event)" />
</body>
</html>