DIV로 표시되는 사각형을 클릭 한 다음 키보드를 사용하여 키보드 이벤트를 나열하여 해당 DIV를 이동할 수있는 응용 프로그램을 빌드 중입니다.
문서 수준에서 이러한 키보드 이벤트에 이벤트 리스너를 사용하는 대신 키보드 포커스를 제공하여 DIV 수준에서 키보드 이벤트를 수신 할 수 있습니까?
다음은 문제를 설명하기위한 간단한 샘플입니다.
<html>
<head>
</head>
<body>
<div id="outer" style="background-color:#eeeeee;padding:10px">
outer
<div id="inner" style="background-color:#bbbbbb;width:50%;margin:10px;padding:10px;">
want to be able to focus this element and pick up keypresses
</div>
</div>
<script language="Javascript">
function onClick()
{
document.getElementById('inner').innerHTML="clicked";
document.getElementById('inner').focus();
}
//this handler is never called
function onKeypressDiv()
{
document.getElementById('inner').innerHTML="keypress on div";
}
function onKeypressDoc()
{
document.getElementById('inner').innerHTML="keypress on doc";
}
//install event handlers
document.getElementById('inner').addEventListener("click", onClick, false);
document.getElementById('inner').addEventListener("keypress", onKeypressDiv, false);
document.addEventListener("keypress", onKeypressDoc, false);
</script>
</body>
</html>
내부 DIV를 클릭하면 포커스를 주려고하지만 후속 키보드 이벤트는 항상 DIV 수준 이벤트 리스너가 아닌 문서 수준에서 선택됩니다.
애플리케이션 별 키보드 포커스 개념을 구현하기 만하면됩니까?
Firefox에서 작동하려면이 기능 만 필요합니다.