[DOM] Accesskey를 이용해 Focus설정
Computer_IT/Ajax2006. 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>
반응형
'Computer_IT > Ajax' 카테고리의 다른 글
WEB 개발용 Debugging Tools (0) | 2008.03.18 |
---|---|
JAVASCRIPT 10분 DOM 강좌 (0) | 2008.03.09 |
[JAVASCRIPT] 입력Form ToolTip 샘플 (0) | 2006.10.01 |
[MSDN] XMLHttpRequest (0) | 2006.06.30 |
CSS Properties Reference... (0) | 2006.06.29 |