aria-required属性学习笔记
網(wǎng)址:https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-required_attribute
The aria-required attribute is used to indicate that user input is required on an element before a form can be submitted. This attribute can be used with any typical HTML form element; it is not limited to elements that have an ARIA role assigned.
aria-required屬性用于表明在一個(gè)form被提交之后,form里包含的某個(gè)元素需要用戶輸入。該屬性不僅限于具有ARIA role屬性賦值的元素,任何form內(nèi)能夠包含的典型element都能夠維護(hù)該屬性。
HTML5 now has the required attribute, but aria-required is still useful for user agents that do not yet support HTML5.
雖然HTML5現(xiàn)在已經(jīng)支持原生的required屬性了,但是對于那些尚無法支持HTML5的user agent來說,aria-required仍然非常有用。
Screen readers should announce the field as required.
Note that this attribute will not automatically change the presentation of the field.
該屬性并不會(huì)改變元素的視覺外觀。
總結(jié)
以上是生活随笔為你收集整理的aria-required属性学习笔记的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 霜菊
- 下一篇: HTML label标签学习笔记