0

我正在尝试使用 jQuery-UI 模式对话框。但是,由 jQuery 创建的 html 包含一个为空或没有 alt 标记值的 iframe。此获取标记为 508 违规。有没有人找到一种方法来使用符合 508 的 jQuery-UI 模态对话框?

4

1 回答 1

1

You need to add the "alt" attribute to the jQuery control. $("elem").attr("alt", "some text").

You can add it to you component definition if the attribute is available for that control.

Does this help?

于 2011-04-25T14:59:58.417 回答