我正在尝试使用jQuery在元素上设置aria-autocomplete属性.但是,当IE10在IE5 Quirks模式或IE7标准模式下运行时,会产生Member not found错误.
<input type="textBox" id="test" /> $('#test').attr({"aria-autocomplete": "list"});
有关演示,请参阅此jsFiddle.
我已经尝试了这里定义的各种其他ARIA属性:
HTML 5: The Markup Language (ARIA Edition)
我无法在IE9中重现错误.
这是IE10中的错误吗? jQuery的?还是有其他原因让我不理解?