web-dev-qa-db-ja.com

'aria-writtenby'プロパティの意味は何ですか?

次のHTMLは、jQueryグリッドプラグインによって挿入されます。

<td role="gridcell" style="" aria-describedby="list_createdBy">Sam</td>

'aria-writtenby'プロパティの意味は何ですか?

23
Rinkal Bhanderi

これは aria仕様 で説明されています。これは、一部のユーザーが必要とする可能性がある現在の要素に関する追加情報を提供する要素のIDを提供します。

24
Quentin

以下は、aria- describebyプロパティを使用する方法の例です。要素に関する情報を含むテキストがある場合に使用されます。 Aria- describebyは、それを説明するテキストのIDと同じである必要があります。

First name: <input aria-describedby="name" type="text"> <em id="name">Your first name must be correct.</em>

6
jakobinn