Tab through disabled =" disabled" Internet Explorer中的按钮

时间:2014-06-12 21:05:13

标签: internet-explorer-9 accessibility

这是一个可访问性问题 - 在chrome中,这些按钮可以通过选项卡进行,但Internet Explorer不允许使用Tab键。有什么建议吗?

1 个答案:

答案 0 :(得分:0)

出于w3c辅助功能的目的,您可以使用 readonly 而不是禁用 并在只读时删除 onfocus 功能。

以下示例:

 ng-readonly="isReadOnly"  ng-focus="(isReadOnly) ? '' : onFocus($event)"