Windows Narrator and aria-describedby
问题 I'm using aria-described by on a few radio buttons so that screen readers will first read the radio label and then the description text to give more information. Due to the structure of the page I can't use a fieldset. Many source accessibility validators will show an error if you have a label without a for attribute so I am using a div for the description text. <div id="desc">Choose a fruit</div> ... <label><input type="radio" aria-describedby="desc" />Apple</label> <label><input type="radio