What is aria-label and how should I use it?
问题 A few hours ago I read about the aria-label attribute, which: Defines a string value that labels the current element. But in my opinion this is what the title attribute was supposed to do. I looked further in the Mozilla Developer Network to get some examples and explanations, but the only thing I found was <button aria-label="Close" onclick="myDialog.close()">X</button> Which does not provide me with any label (so I assume I misunderstood the idea). I tried it here in jsfiddle. So my