简体   繁体   中英

aria-label is not reading by JAWS in Internet explorer 11 for div role=“button”

I have a parent div which has tabindex="0" and aria-label and has child divs. out of which one child div has tabindex="0" and aria-label. JAWS 18 reading this child div aria-label correctly in other browsers but in IE11, it's reading parent div's aria-label.Please help me resolve this bug.

It would be great if you could say which div has role = "button". So far, this is all I got with JAWS 18 and IE 11

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>NA</title>
    </head>
    <body>
        <div id="parent" tabindex="0" aria-label="I am your father">
            0
            <div id="child" tabindex="0" aria-label="so, why mum says it's the butcher?">
                1                
            </div>
            <div id="child" tabindex="-1" aria-label="wrong guy, dude">
                2
            </div>
        </div>
    </body>
</html>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM