我的浏览器(Firefox v3.6.13)在渲染文本时出现问题,使颜色变得绿色和松脆(请参见下图)。有这个问题的解决方案吗?
这是我正在使用的代码:
<script language="javascript">
function showProjects(){
var index = 0;
$(".parent_div").children().each(function(i) {
$(this).delay(250*index++).fadeIn(3500);
});
};
</script>
<body>
<div class="parent_div">
<a id="test1" href="#" style="display:none">Something 1</a>
<a id="test2" href="#" style="display:none">Something 2</a>
<a id="test3" href="#" style="display:none">Something 3</a>
</div>
</body>
另外,我尝试将我的jquery脚本更改为:
$(this).delay(250*index++).fadeIn(3500, function(){
this.style.removeAttribute("filter"); // Suggested on other websites, but still doesn't work :(
});
谢谢, 游击