1

我目前被一个奇怪的问题难住了。我有一个在所有主要浏览器上都可以正常工作的 jQuery 滑块,但是当我在 Internet Explorer 8 上时,Next/Prev 按钮不起作用(例如,悬停时它们没有链接)。

我的 HTML:

<div id="container">
    <div id="frame"></div>
    <div id="slides">
        <a href="#" class="prev"></a>
        <a href="#" class="next"></a>
        <div class="slides_container">
            <img src="images/slider/4.jpg" width="954" height="247" alt="Slide 1">
            <img src="images/slider/4.jpg" width="954" height="247" alt="Slide 2">
            <img src="images/slider/4.jpg" width="954" height="247" alt="Slide 3">
        </div>
    </div>
</div>

我的 CSS:

#container {
    width: 964px;
    height: 257px;
    z-index: 99999;
    padding: 5px;
    margin-top: 16px;
    margin-left: 7px;
    position: relative;
}

#frame {
    background: url('../images/slider/slider_frame.png') no-repeat;
    border-radius: 4px 4px 4px 4px;
    box-shadow: 0 0 5px #000000, 0 0 6px #000000;
    height: 257px;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: -5px;
    width: 964px;
    z-index: 99999;
}

/*
    Slideshow
*/

#slides {
    position: absolute;
    top: 1px;
    z-index: 100;
    left: 5px;
    width: 954px;
    height: 247px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

/*
    Slides container
    Important:
    Set the width of your slides container
    Set to display none, prevents content flash
*/

.slides_container {
    width: 954px;
    position: relative;
    display: none;
}

/*
    Each slide
    Important:
    Set the width of your slides
    If height not specified height will be set by the slide content
    Set to display block
*/

.slides_container a {
    width: 570px;
    height: 270px;
    display: block;
}

.slides_container a img {
    display: block;
}

/*
    Next/prev buttons
*/

#slides .next, #slides .prev {
    position: absolute;
    top: 100px;
    width: 48px;
    height: 48px;
    display: block;
    z-index: 101;
}

#slides .next {
    background-image: url('../images/slider/arrow-right.png');
}

#slides .next:hover {
    background-image: url('../images/slider/arrow-right-hov.png');
}

#slides .prev {
    background-image: url('../images/slider/arrow-left.png');
}

#slides .prev:hover {
    background-image: url('../images/slider/arrow-left-hov.png');
}

#slides .next {
    left: 906px;
}

基本上改写我的问题:
我在这个 jQuery 滑块中有一个图像,用于切换幻灯片。然而,该图像在 IE8 中没有链接,因此不允许使用 IE8 的用户在幻灯片之间滚动。

4

1 回答 1

1

当我看到 css 时,您的 css 类有 z-index 问题:

#frame {
background: url('../images/slider/slider_frame.png') no-repeat;
border-radius: 4px 4px 4px 4px;
box-shadow: 0 0 5px #000000, 0 0 6px #000000;
height: 257px;
left: 0;
pointer-events: none;
position: absolute;
top: -5px;
width: 964px;
z-index: 99999; // <-----------------this has the higher index.
}

#slides .next, #slides .prev {
position: absolute;
top: 100px;
width: 48px;
height: 48px;
display: block;
z-index: 101; //<--------------------this has a lower index
}

尝试interchange the z-indexesmake a new higher z-index单击按钮。

试试这个,看看这是否对你有帮助。

于 2012-12-23T17:39:55.860 回答