Computer_IT/Ajax
[DOM] Accesskey를 이용해 Focus설정
고급코드
2006. 6. 29. 15:35
반응형
<html>
<head>
<script type="text/javascript">
function access()
{
document.getElementById('myAnchor').accessKey="a"
}
</script>
</head>
<head>
<script type="text/javascript">
function access()
{
document.getElementById('myAnchor').accessKey="a"
}
</script>
</head>
<body onload="access()">
<p><a id="myAnchor" href=http://sarangsai.com>sarangsai</a></p>
<p>ALT+'A' 키를 누르면 포커스가 링크로 이동</p>
</body>
</html>
반응형