jQuery幻灯片显示能够在IE8上运行

问题描述

我正在尝试在能够在Internet Explorer 8上运行的jquery上写幻灯片Here I attached sample to download
它可以正常运行,但是我想根据一个月的日期从另一个图像开始。
例如,当它是8月23日时,幻灯片放映必须从23号图像开始。 IE9或更高版本没有问题,但是在IE8中,我找不到任何解决方案。
不幸的是,在蒙古,几乎所有计算机中的一半仍具有IE8。
请帮我!!! 任何建议将不胜感激!

还要采样:

<!DOCTYPE html>
<html>
<head>
<title>JQuery Cycle Plugin - Basic Demo</title>
<style type="text/css">
.slideshow { height: 265px; width: 120px; margin: 0px}
.slideshow img { padding: 0px; border: 0px solid #ccc; background-color: #eee; }
body {
    margin-top: 0px; 
    margin-bottom: 0px; 
    margin-left: 0px; 
    margin-right: 0px;
    padding: 0;
    overflow: hidden; /* Hide scrollbars */
    -ms-overflow-style: none;  /* IE and Edge */
}
</style>
<!-- include jQuery library -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<!-- include Cycle plugin -->
<script type="text/javascript" src="http://malsup.github.com/jquery.cycle.all.js"></script>
<script type="text/javascript">
var slideIndex = 1,delay = 14,delayHandle = 0;
var slides = $('.slideshow');
var imgCount = 3;
var today = new Date();
slideIndex = parseInt(today.getDate());
slideIndex = slideIndex % imgCount;
$(document).ready(function() {
    $('.slideshow').cycle({
        fx: 'fade',speed: 100,timeout: 5000
    });
});
</script>
</head>
<body>
    <div class="slideshow">
        <a href="http://www.orion.mn/ach-ur.html" class="customfont_menu" target="_blank">
            <img src="reclampanel_slideshow/pic1.jpg" /></a>
        <a href="http://www.orion.mn/ach-ur.html" class="customfont_menu" target="_blank">
            <img src="reclampanel_slideshow/pic2.jpg" /></a>
        <a href="http://www.orion.mn/ach-ur.html" class="customfont_menu" target="_blank">
            <img src="reclampanel_slideshow/pic3.jpg" /></a>
    </div>
</body>
</html>

关于, 奥吉尔

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)