aria-live and JAWS
问题 I'm trying to get an aria-live region to work correctly with JAWS 11 and IE8. Using the code below, I can get JAWS to announce the new value when the button is clicked, but the behaviour is not what I would expect. JSFiddle of this example <!DOCTYPE html> <html> <head></head> <body> <button onclick="document.getElementById('statusbar').innerHTML = parseInt(document.getElementById('statusbar').innerHTML) + 1">Update</button> <div id="statusbar" aria-live="polite">0</div> </body> </html> Using