我在 jquery 中有以下语句,它完美地适用于 Chrome v.22 和 Firefox v.16,但不适用于 IE8;这是声明:
第一种方法:
$("div[aria-labelledby='myOwnAriaLabelledBy']").css('height',450);
第二种方法:
$("div[aria-labelledby='myOwnAriaLabelledBy']").attr('id','test');
$("#test").css('height',450);
这是html,我不能包含类:
<div style="display: block; z-index: 1006; outline: 0px none;
position: absolute; height: 490.333px; width: 600.333px;
top: 10px; left: 10px;"
tabindex="-1" role="dialog" aria-labelledby="myOwnAriaLabelledBy">
有谁知道这种选择器是否存在 IE8 已知问题?谢谢