Buttons and links keyboard triggers

廉价感情. 提交于 2019-12-12 01:46:48

问题


While doing research I came across this statement:

Warning: Be careful when marking up links with the button role. Buttons are expected to be triggered using the Space key, while links are expected to be triggered using the Enter key.

  1. Does anyone know why a different key is used for buttons / links?

  2. Is it ok to trigger using both Space and Enter?

Before reading this I, as a user, would have had no idea when to use Space or Enter.


Had a quick look at Google to see what they do.

  • For links Space scrolls down and Enter triggers
  • For buttons both Space and Enter trigger

回答1:


  1. Buttons are form elements.

    If you select a checkbox element, space will toggle the checkbox while enter will submit the form.

    So to be coherent, buttons act the same way. In practice, they accept both enter and space without any difference.

  2. It is not only ok but you have to

    Read inside the Third rule of ARIA:

    For example, if using role=button the element must be able to receive focus and a user must be able to activate the action associated with the element using both the enter (on WIN OS) or return (MAC OS) and the space key.

  3. This is for historical reason, not that it has been defined in any official recommendation, as far as I know

    For instance an old bug from 2000 (https://bugzilla.mozilla.org/show_bug.cgi?id=56495) already stated that space bar was expected to work on buttons. Maybe an inheritance from Windows behavior.




回答2:


I am speculating to answer #1, but I believe the keys used to activate buttons versus hyperlinks are holdovers from operating systems. For hyperlinks, think of Windows Help in Windows 95 and its reliance on in-content links, or Hypercard on the Mac prior to that. Also note that Space has scrolled a page in browsers since (IIRC) day one.

To answer number 2, no it is not OK. This is because a space bar triggers a page scroll and many users expect that when focus is on a hyperlink that pressing Space will just scroll the page.

In short, honor the keyboard mappings that are in place since there are users who rely on them and messing with them can have catastrophic consequences for users of assistive tech along with users with disabilities who do not use assistive tech.

Let me re-state what you saw at Mozilla:

A hyperlink can be fired by pressing the enter key. But a true button can be fired by pressing the enter key or the space bar. When a hyperlink has focus and the user presses the space bar, the page will scroll one screenful.

And then let me add this:

I think it’s also worth mentioning that events triggered by a space bar only fire when the key is released, whereas using the Enter key will fire the event as soon as you press the key down (prior to releasing it).

Source: Links, Buttons, Submits, and Divs, Oh Hell.



来源:https://stackoverflow.com/questions/41840375/buttons-and-links-keyboard-triggers

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!