jsx_a11y/iframe-has-title 正確性
功能說明
強制 iframe 元素必須有 title 屬性。
為什麼需要這樣做?
螢幕閱讀器使用者依賴 iframe 的 title 來描述 iframe 的內容。如果標記不包含 title 屬性,則對於使用此技術的使用者來說,快速瀏覽 iframe 和 iframe 元素會變得困難且令人困惑。
檢查內容
此規則檢查 iframe 元素上是否有 title 屬性。
範例
此規則的 錯誤 程式碼範例
jsx
<iframe />
<iframe {...props} />
<iframe title="" />
<iframe title={''} />
<iframe title={``} />
<iframe title={undefined} />
<iframe title={false} />
<iframe title={true} />
<iframe title={42} />
此規則的 正確 程式碼範例
jsx
<iframe title="This is a unique title" />
<iframe title={uniqueTitle} />