jsx_a11y/iframe-has-title 正确性
作用
强制 iframe 元素具有 title 属性。
为什么有必要?
屏幕阅读器用户依靠 iframe 标题描述 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} />