在IE 7和IE9中使用float:left和Javascript的居中菜单出现问题

时间:2011-08-15 10:18:07

标签: javascript jquery html css internet-explorer

我已经制作了菜单并使用css margin-left:auto; margin-right: auto;将其居中。此菜单由<a>属性float:left链接组成。在Firefox和Chrome甚至IE8中,一切都很好 - 菜单位于中心并且在一条水平线上。但在IE9中存在问题 - 最后一个元素比菜单的其余部分低1px。看起来像这样:
 IE9 menu
在IE7中也有问题 - 最后一个元素在菜单下:
 IE7 menu

我尝试添加display:inline;并且它有助于浮动 - 在IE7和IE9菜单中也看起来应该如此。但是菜单中心丢失了 - 菜单在一行但是从我检查过的所有borwsers的左边开始。

还有Javascript正在为菜单项添加淡入淡出效果。我认为这个问题存在于这个Javascript中。

我的菜单代码如下:

                                                                                                                                                                                                               

和css:

    .menu
    {
        background: url('Images/bg.jpg') repeat-x left top;
        height: 73px;
        margin-top: 8px;
    }

    .menu_inner
    {
        margin: 0 auto;
        width: 1001px;       
    }

    .menu_inner a
    {
        float: left;
        padding: 0px;
        margin: 0px;
    }

Javascript wchich正在添加淡入淡出效果:

(function ($) {
    $.fn.cross = function (options) {
        return this.each(function (i) {
            // cache the copy of jQuery(this) - the start image
            var $$ = $(this);

            // get the target from the backgroundImage + regexp
            var target = $$.css('backgroundImage').replace(/^url|[\(\)'"]/g, '');

            // nice long chain: wrap img element in span
            $$.wrap('<span style="position: relative;"></span>')
            // change selector to parent - i.e. newly created span
                    .parent()
            // prepend a new image inside the span
                    .prepend('<img>')
            // change the selector to the newly created image
                    .find(':first-child')
            // set the image to the target
                    .attr('src', target);

            // the CSS styling of the start image needs to be handled
            // differently for different browsers
            if ($.browser.msie || $.browser.mozilla) {
                $$.css({
                    'position': 'absolute',
                    'left': 0,
                    'background': '',
                    'top': this.offsetTop
                });
            } else if ($.browser.opera && $.browser.version < 9.5) {
                // Browser sniffing is bad - however opera < 9.5 has a render bug 
                // so this is required to get around it we can't apply the 'top' : 0 
                // separately because Mozilla strips the style set originally somehow...                    
                $$.css({
                    'position': 'absolute',
                    'left': 0,
                    'background': '',
                    'top': "0"
                });
            } else { // Safari
                $$.css({
                    'position': 'absolute',
                    'left': 0,
                    'background': ''
                });
            }

            // similar effect as single image technique, except using .animate 
            // which will handle the fading up from the right opacity for us
            $$.hover(function () {
                $$.stop().animate({
                    opacity: 0
                }, 550);
            }, function () {
                $$.stop().animate({
                    opacity: 1
                }, 550);
            });
        });
    };

})(jQuery);

// note that this uses the .bind('load') on the window object, rather than $(document).ready() 
// because .ready() fires before the images have loaded, but we need to fire *after* because
// our code relies on the dimensions of the images already in place.
$(window).bind('load', function () {
    $('img.fade').cross();
});

这里的任何帮助都非常感谢!

2 个答案:

答案 0 :(得分:0)

  1. 如果黑色边框的样式以及a + width of the border = width of the wrapper的宽度 - 否则它将不适合包装div。

  2. 如果css中没有边框,并且您默认使用浏览器样式,例如

    * {margin: 0px; paddding: 0px;}
    
  3. 然后问题可能是IE7无法计数! :)将width: 1001px;更改为width: 1002px;,这样会好的!

答案 1 :(得分:0)

这个Javascript显然有问题。

尝试将其更改为其他内容,例如:http://bavotasan.com/2010/jquery-simple-animated-fade-effect/