如何使此代码在IE8中运行(如果可能,则在其下)?
return parseInt(window.getComputedStyle(indicator).getPropertyValue('z-index'), 10);
最佳答案
将此添加到您的代码中:
if( !window.getComputedStyle) {
window.getComputedStyle = function(e) {return e.currentStyle};
}
另外,您可以使用
getComputedStyle(indicator).zIndex
以跨浏览器的方式获取属性。关于javascript - getComputedstyle-IE8问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22212059/