<html>
<head>
<script>
function listen_key()
{
key = event.keyCode;
h1 = document.getElementsByTagName('h1');
text = h1[0].innerHTML;
text = text + String.fromCharCode(key);
h1[0].innerHTML = text;
}
</script>
</head>
<body onkeydown='listen_key()'>
<h1> input key: </h1>
</body>
<html>
'Web Security' 카테고리의 다른 글
데이터 전달 (0) | 2018.02.20 |
---|---|
CGI(PHP) (0) | 2018.02.19 |
웹의이해 (JavaScript) (0) | 2018.02.12 |
Apache 서버 (0) | 2018.02.12 |
웹의 이해(html) (0) | 2018.02.08 |