我的主页对所有浏览器都进行罚款,但IE9部分网页没有装满。 下面是我网页上的主要形象,有6个盒子,有些是im。 IE 9没有显示这些盒子,我不理解为什么。 任何想法?
<><>><>>>>><>>><>>>>> - 我无法在E 9(我正在使用Windows XP)中测试这一点,我已经向我报告过,并通过数人证实了这一点。
该守则是:
JAVASCRIPT
var $j = jQuery.noConflict();
$j(document).ready(function(){
Engine.Initialize();
if( !$j( body ).hasClass( index ) && !$j( body ).hasClass( homepage ) ) {
}
});
var Engine = {
Initialize: function() {
Engine.Homepage_Animation();
},
Homepage_Animation: function() {
if( !$j.browser.msie ) {
$j( #homepage-main-item img ).hide().fadeIn(700, function(){
$j(this).css( display , block );
$j( #homepage-boxes .boxes ).each(function(i) {
$j(this).delay(100 * i).animate({
opacity: 1
}, 300);
});
});
} else {
$j( #homepage-main-item img ).css( display , block );
$j( #homepage-boxes .boxes ).css( opacity , 1);
}
}
}
<><><><>>><>>>>><>>>>>>
(The HTML code below is for only 1 box. To view the entire code please click the link below)
<div class="boxes-content">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
请注意,我没有制定这一法典,一位朋友为我创立了该守则,他没有作出答复。