Why does my page work in IE9's IE7 mode, but not in IE7 itself?

前端 未结 8 758
离开以前
离开以前 2021-02-01 05:10

I recently went live with our new home page, after heavily testing it in each of IE9\'s browser and document modes (not just compatibility mode, but actual IE7 and IE8

8条回答
  •  不要未来只要你来
    2021-02-01 05:18

    The problem seems to be with the slideshow

    Glancing through your script.js file i see this

    /*
     * Here is the slideshow code.
     */
    
     // Screw ie7...
    if ( !($.browser.msie && $.browser.version <= 7.0) ){
    

    so i would start my search there, as it seems to ignore IE7 and below..

提交回复
热议问题