我在 IE8 中遇到了 pie.js 的问题。这是我的CSS代码
.example{
top:0;
font-family:Verdana, Arial, Helvetica, sans-serif;
padding:0;
-moz-border-radius:5px;
-webkit-border-radius:5px;
border-radius:5px;
font-weight:bold;
cursor:pointer;
text-decoration:none;
position:relative;
z-index:1;
background-position: 0 50%;
background-repeat:repeat-x;
text-align:center;
-pie-poll:true;
}
我用 jQuery 调用它
jQuery(document).ready(
function() {
if (window.PIE) {
$('.example').each(function() {
PIE.attach(this);
});
}
});
它在 IE7 中运行良好,但是当我切换到 IE8 时,直到我将鼠标悬停在样式元素上,饼图样式才会呈现。它仅在完全加载页面后的第一次发生!!稍后它可以正常工作....
我很确定我使用绝对路径来加载 pie.js 并且我已经处理了 Z-index 以及 position:relative ...
就是不知道怎么回事……有没有人有同样的问题?你如何解决它?