Set keyboard focus to a <div>

自古美人都是妖i 提交于 2019-11-26 20:00:36

you can make a div focusable if you add a tabindex attribute.

see: http://snook.ca/archives/accessibility_and_usability/elements_focusable_with_tabindex

The tabindex value can allow for some interesting behaviour.

  • If given a value of "-1", the element can't be tabbed to but focus can be given to the element programmatically (using element.focus()).
  • If given a value of 0, the element can be focused via the keyboard and falls into the tabbing flow of the document.
  • Values greater than 0 create a priority level with 1 being the most important.

UPDATE: added a simple demo at http://jsfiddle.net/roberkules/sXj9m/

The function that's dynamically generating the divs will have the context available to know which div to focus on, after the last div output a script with a scrollTo() to focus on the div you want. Assign each div an ID, so you'll be able to choose it out of the set.

Response.Write "
<script language='text/javascript'>
document.getElementById('div#').scrollIntoView();
</script>
"

You can't focus a div. Do you mean focus an input?

Anyway, you can include a short script tag to focus something right in the HTML - simply put the script right after the div - or even inside the div.

Are you in control of the asp function? If yes, then that'd be the easiest place to set focus. Otherwise, you could listen to DOMNodeInserted event (note: browser support may vary) and set focus to div (or its children) based on appropriate conditions.

You could use getElementsByClassName

<div tabindex="0" class="to-focus">TEXT</div>
<script> document.getElementsByClassName('to-focus')[0].focus()</script>

do you mean you want to focus the divs whenever it is generated? try reasearching for these

http://api.jquery.com/focus/

and

http://api.jquery.com/live/

and for the keypress..

http://api.jquery.com/keypress/

afaik divs and other elements can have focus of some sort like in wikis, like..

http://en.wikipedia.org/wiki/JavaScript#Cross-site_vulnerabilities

and it'll scroll automatically there. I am just no sure how.

as for the dynamically generated divs and tables you can use jquery's live() function

I solve that doing the next:

<div tabindex="0" >
    <button onclick="element.parentNode.focus();"/>
</div>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!