English 中文(简体)
页: 1
原标题:Page does not load properly in IE9

我的主页对所有浏览器都进行罚款,但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>

请注意,我没有制定这一法典,一位朋友为我创立了该守则,他没有作出答复。

最佳回答

造成这一问题的错误是getElementsByTagName,载于IE9, 而你使用的jquery版本则过时。 如今,它正在E9号文件中开展工作,尽管如此,它似乎增加了最新版本。

问题回答

暂无回答




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签