[AngularJS] Accessible Button Events

Source: Internet
Author: User

Often buttons need to being handled by JavaScript, and if do improperly it can leads to accessibility issues. In this lesson improve a major news organization's global header with some basic HTML and JavaScript.

Normal should use native ' button ' to make a button instead of the use other HTML element to make a button and then you can AC Cess the button thought the keyboard.

If you use a ' div ' and then the "what" should do to make it accessible to the user by Keyborad, you should add ' role ', ' Tabinde X ' & ' Aria-label ' to it:

<ButtonAria-label= "Help">    <Iclass= "icon Icon-help"></I></Button><Divclass= "button"role= "button"TabIndex= "0"Aria-label= "Menu">    <Iclass= "icon Icon-menu"></I></Div>

If you use Angularjs,and-Want press ' Enter ' to get the handle event, you should add ' Ng-keydown ' for it:

<ButtonAria-label= "Help"Ng-click= "Dostuff ()">    <Iclass= "icon Icon-help"></I></Button><Divclass= "button"role= "button"TabIndex= "0"Aria-label= "Menu"Ng-click= "Dostuff ()"Ng-keydown= "Dostuff ()">    <Iclass= "icon Icon-menu"></I></Div>

[AngularJS] Accessible Button Events

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.