var sina = { 
$: function(objName) {
    if (document.getElementById) { return eval('document.getElementById("' + objName + '")') }
    else { return eval('document.all.' + objName) }
}, 
isIE: navigator.appVersion.indexOf("MSIE") != -1 ? true : false, addEvent: function(l, i, I) {
    if (l.attachEvent) { l.attachEvent("on" + i, I) }
    else { l.addEventListener(i, I, false) }
}, 
delEvent: function(l, i, I) {
    if (l.detachEvent) { l.detachEvent("on" + i, I) }
    else { l.removeEventListener(i, I, false) }
}, 
readCookie: function(O) {
    var o = "", l = O + "=";
    if (document.cookie.length > 0) {
        var i = document.cookie.indexOf(l);
        if (i != -1) {
            i += l.length;
            var I = document.cookie.indexOf(";", i);
            if (I == -1) {
                I = document.cookie.length;
            } 
            o = unescape(document.cookie.substring(i, I))
        }
    };
    return o
},
writeCookie: function(i, l, o, c) {
    var O = "", I = "";
    if (o != null) { O = new Date((new Date).getTime() + o * 3600000); O = "; expires=" + O.toGMTString() }; if (c != null) { I = ";domain=" + c };
    document.cookie = i + "=" + escape(l) + O + I
}, 
readStyle: function(I, l) {
    if (I.style[l]) { return I.style[l] }
    else if (I.currentStyle) { return I.currentStyle[l] }
    else if (document.defaultView && document.defaultView.getComputedStyle) { var i = document.defaultView.getComputedStyle(I, null); return i.getPropertyValue(l) }
    else { return null }
}
};//滚动图片构造函数
//UI&UE Dept. mengjia
//080623
function ScrollPic(scrollContId, arrLeftId, arrRightId, dotListId) {
    this.scrollContId = scrollContId;
    this.arrLeftId = arrLeftId;
    this.arrRightId = arrRightId;
    this.dotListId = dotListId;
    this.dotClassName = "dotItem";
    this.dotOnClassName = "dotItemOn";
    this.dotObjArr = [];
    this.pageWidth = 0;
    this.frameWidth = 0;
    this.speed = 10;
    this.space = 10;
    this.pageIndex = 0;
    this.autoPlay = true;
    this.autoPlayTime = 3;
    var _autoTimeObj, _scrollTimeObj, _state = "ready";
    this.stripDiv = document.createElement("DIV");
    this.listDiv01 = document.createElement("DIV");
    this.listDiv02 = document.createElement("DIV");
    if (!ScrollPic.childs) { ScrollPic.childs = [] };
    this.ID = ScrollPic.childs.length;
    ScrollPic.childs.push(this);
    this.initialize = function() {
        if (!this.scrollContId) { throw new Error("必须指定scrollContId."); return };
        this.scrollContDiv = sina.$(this.scrollContId);
        if (!this.scrollContDiv) {
            throw new Error("scrollContId不是正确的对象.(scrollContId = \"" + this.scrollContId + "\")");
            return 
         };
        this.scrollContDiv.style.width = this.frameWidth + "px";
        this.scrollContDiv.style.overflow = "hidden";
        this.listDiv01.innerHTML = this.listDiv02.innerHTML = this.scrollContDiv.innerHTML;
        this.scrollContDiv.innerHTML = "";
        this.scrollContDiv.appendChild(this.stripDiv);
        this.stripDiv.appendChild(this.listDiv01);
        this.stripDiv.appendChild(this.listDiv02);
        this.stripDiv.style.overflow = "hidden";
        this.stripDiv.style.zoom = "1";
        this.stripDiv.style.width = "32766px";
        this.listDiv01.style.cssFloat = "left";
        this.listDiv02.style.cssFloat = "left";
        sina.addEvent(this.scrollContDiv, "mouseover", Function("ScrollPic.childs[" + this.ID + "].stop()"));
        sina.addEvent(this.scrollContDiv, "mouseout", Function("ScrollPic.childs[" + this.ID + "].play()"));
        if (this.arrLeftId) {
            this.arrLeftObj = sina.$(this.arrLeftId);
            if (this.arrLeftObj) {
                sina.addEvent(this.arrLeftObj, "mousedown", Function("ScrollPic.childs[" + this.ID + "].rightMouseDown()"));
                sina.addEvent(this.arrLeftObj, "mouseup", Function("ScrollPic.childs[" + this.ID + "].rightEnd()"));
                sina.addEvent(this.arrLeftObj, "mouseout", Function("ScrollPic.childs[" + this.ID + "].rightEnd()"))
            } 
        };
        if (this.arrRightId) {
            this.arrRightObj = sina.$(this.arrRightId);
            if (this.arrRightObj) {
                sina.addEvent(this.arrRightObj, "mousedown", Function("ScrollPic.childs[" + this.ID + "].leftMouseDown()"));
                sina.addEvent(this.arrRightObj, "mouseup", Function("ScrollPic.childs[" + this.ID + "].leftEnd()"));
                sina.addEvent(this.arrRightObj, "mouseout", Function("ScrollPic.childs[" + this.ID + "].leftEnd()"))
            } 
        };
        if (this.dotListId) {
            this.dotListObj = sina.$(this.dotListId);
            if (this.dotListObj) {
                var pages = Math.round(this.listDiv01.offsetWidth / this.frameWidth + 0.4), i, tempObj;
                for (i = 0; i < pages; i++) {
                    tempObj = document.createElement("span");
                    this.dotListObj.appendChild(tempObj);
                    this.dotObjArr.push(tempObj);
                    if (i == this.pageIndex) {
                        tempObj.className = this.dotClassName
                    }
                    else { tempObj.className = this.dotOnClassName };
                    tempObj.title = "第" + (i + 1) + "页";
                    sina.addEvent(tempObj, "click", Function("ScrollPic.childs[" + this.ID + "].pageTo(" + i + ")"))
                } 
            } 
        };
        if (this.autoPlay) { this.play() } 
    };
    this.leftMouseDown = function() {
        if (_state != "ready") { return };
        _state = "floating";
        _scrollTimeObj = setInterval("ScrollPic.childs[" + this.ID + "].moveLeft()", this.speed)
    };
    this.rightMouseDown = function() {
        if (_state != "ready") { return };
        _state = "floating";
        _scrollTimeObj = setInterval("ScrollPic.childs[" + this.ID + "].moveRight()", this.speed)
    };
    this.moveLeft = function() {
        if (this.scrollContDiv.scrollLeft + this.space >= this.listDiv01.scrollWidth) {
            this.scrollContDiv.scrollLeft = this.scrollContDiv.scrollLeft + this.space - this.listDiv01.scrollWidth
        }
        else { this.scrollContDiv.scrollLeft += this.space };
        this.accountPageIndex()
    };
    this.moveRight = function() {
        if (this.scrollContDiv.scrollLeft - this.space <= 0) {
            this.scrollContDiv.scrollLeft = this.listDiv01.scrollWidth + this.scrollContDiv.scrollLeft - this.space
        }
        else { this.scrollContDiv.scrollLeft -= this.space };
        this.accountPageIndex()
    };
    this.leftEnd = function() {
        if (_state != "floating") { return };
        _state = "stoping";
        clearInterval(_scrollTimeObj);
        var fill = this.pageWidth - this.scrollContDiv.scrollLeft % this.pageWidth;
        this.move(fill)
    };
    this.rightEnd = function() {
        if (_state != "floating") { return };
        _state = "stoping";
        clearInterval(_scrollTimeObj);
        var fill = -this.scrollContDiv.scrollLeft % this.pageWidth; 
        this.move(fill)
    };
    this.move = function(num, quick) {
        var thisMove = num / 5;
        if (!quick) {
            if (thisMove > this.space) { thisMove = this.space };
            if (thisMove < -this.space) { thisMove = -this.space } 
        };
        if (Math.abs(thisMove) < 1 && thisMove != 0) { thisMove = thisMove >= 0 ? 1 : -1 }
        else { thisMove = Math.round(thisMove) };
        var temp = this.scrollContDiv.scrollLeft + thisMove;
        if (thisMove > 0) {
            if (this.scrollContDiv.scrollLeft + thisMove >= this.listDiv01.scrollWidth) {
                this.scrollContDiv.scrollLeft = this.scrollContDiv.scrollLeft + thisMove - this.listDiv01.scrollWidth
            }
            else { this.scrollContDiv.scrollLeft += thisMove } 
        }
        else {
            if (this.scrollContDiv.scrollLeft - thisMove <= 0) {
                this.scrollContDiv.scrollLeft = this.listDiv01.scrollWidth + this.scrollContDiv.scrollLeft - thisMove
            }
            else { this.scrollContDiv.scrollLeft += thisMove } 
        };
        num -= thisMove;
        if (Math.abs(num) == 0) {
            _state = "ready";
            if (this.autoPlay) { this.play() };
            this.accountPageIndex();
            return
        }
        else {
            this.accountPageIndex();
            setTimeout("ScrollPic.childs[" + this.ID + "].move(" + num + "," + quick + ")", this.speed)
        } 
    };
    this.next = function() {
        if (_state != "ready") { return };
        _state = "stoping";
        this.move(this.pageWidth, true)
    };
    this.play = function() {
        if (!this.autoPlay) { return };
        clearInterval(_autoTimeObj);
        _autoTimeObj = setInterval("ScrollPic.childs[" + this.ID + "].next()", this.autoPlayTime * 1000)
    };
    this.stop = function() { clearInterval(_autoTimeObj) };
    this.pageTo = function(num) {
        if (_state != "ready") { return };
        _state = "stoping";
        var fill = num * this.frameWidth - this.scrollContDiv.scrollLeft;
        this.move(fill, true)
    };
    this.accountPageIndex = function() {
        this.pageIndex = Math.round(this.scrollContDiv.scrollLeft / this.frameWidth);
        if (this.pageIndex > Math.round(this.listDiv01.offsetWidth / this.frameWidth + 0.4) - 1) { this.pageIndex = 0 };
        var i;
        for (i = 0; i < this.dotObjArr.length; i++) {
            if (i == this.pageIndex) { this.dotObjArr[i].className = this.dotClassName }
            else { this.dotObjArr[i].className = this.dotOnClassName }
        }
    }
};

解决方案 »

  1.   

    js调用
    <!--滚动图片 start--> 
          <div class="RollPhotos">
              <div class="FixTitle">
                  <span class="fix-title">产品展示</span>
              </div>
              <div class="RollContent">
                  <div class="LeftSpace" id="LeftArr"></div>
                  <div class="Cont" id="ISL_Cont_1">
                      <div class="box">
                          <a class="imgBorder" href="product.htm" target="_blank">
                              <img alt="" title="" src="images/jyh01.jpg" style="width:210px; height:160px; border:0px"/>
                          </a> 
                          <p><a href="product.htm" target="_blank">金银花树</a></p>
                      </div>
                      <div class="box">
                          <a class="imgBorder" href="product.htm" target="_blank">
                              <img alt="" title="" src="images/jyh02.jpg" style="width:210px; height:160px; border:0px"/>
                          </a> 
                          <p><a href="product.htm" target="_blank">种条</a></p>
                      </div>
                      <div class="box">
                          <a class="imgBorder" href="product.htm" target="_blank">
                              <img alt="" title="" src="images/jyh03.jpg" style="width:210px; height:160px; border:0px"/>
                          </a> 
                          <p><a href="product.htm" target="_blank">花蕾</a></p>
                      </div>
                      <div class="box">
                          <a class="imgBorder" href="product.htm" target="_blank">
                              <img alt="" title="" src="images/jyh04.jpg" style="width:210px; height:160px; border:0px"/>
                          </a> 
                          <p><a href="product.htm" target="_blank">金银花树</a></p>
                      </div>
                      <div class="box">
                          <a class="imgBorder" href="product.htm" target="_blank">
                              <img alt="" title="" src="images/jyh05.jpg" style="width:210px; height:160px; border:0px"/>
                          </a> 
                          <p><a href="product.htm" target="_blank">金银花苗</a></p>
                      </div>
                      <div class="box">
                          <a class="imgBorder" href="product.htm" target="_blank">
                              <img alt="" title="" src="images/jyh06.jpg" style="width:210px; height:160px; border:0px"/>
                          </a> 
                          <p><a href="product.htm" target="_blank">花蕾</a></p>
                      </div>  
                      <div class="box">
                          <a class="imgBorder" href="product.htm" target="_blank">
                              <img alt="" title="" src="images/jyh07.jpg" style="width:210px; height:160px; border:0px"/>
                          </a> 
                          <p><a href="product.htm" target="_blank">花蕾</a></p>
                      </div>
                      <div class="box">
                          <a class="imgBorder" href="product.htm" target="_blank">
                              <img alt="" title="" src="images/jyh08.jpg" style="width:210px; height:160px; border:0px"/>
                          </a> 
                          <p><a href="product.htm" target="_blank">花蕾</a></p>
                      </div>
                      <div class="box">
                          <a class="imgBorder" href="product.htm" target="_blank">
                              <img alt="" title="" src="images/jyh09.jpg" style="width:210px; height:160px; border:0px"/>
                          </a> 
                          <p><a href="product.htm" target="_blank">花蕾</a></p>
                      </div>                                
                  </div>
                  <div class="RightSpace" id="RightArr"></div>
              </div>
              <script language="javascript" type="text/javascript">
              var scrollPic_02 = new ScrollPic();
              scrollPic_02.scrollContId   = "ISL_Cont_1"; //内容容器ID
              scrollPic_02.arrLeftId = "LeftArr"; //左箭头ID
              scrollPic_02.arrRightId = "RightArr"; //右箭头ID
              scrollPic_02.frameWidth = 720; //显示框宽度
              scrollPic_02.pageWidth = 720; //翻页宽度
              scrollPic_02.speed = 10; //移动速度(单位毫秒,越小越快)
              scrollPic_02.space = 10; //每次移动像素(单位px,越大越快)
              scrollPic_02.autoPlay = true; //自动播放
              scrollPic_02.autoPlayTime = 3; //自动播放间隔时间(秒)
              scrollPic_02.initialize(); //初始化
              </script>      
         </div>
         <!--滚动图片 end-->
      

  2.   

    效果图:http://yuhai1958.w20.enkj.com  中间的产品展示
    问题描述:在IE6/遨游/FireFox3.5中,均可正常实现图片一直轮换播放,但是在IE8 中只播放2次,请高人指点
      

  3.   

    感谢 foren_whb(丰云),出现红叉,肯定是因为图片没显示
      

  4.   

    up
    还有,http://yuhai1958.w20.enkj.com ,LZ我在IE6上看了,那个产品展示没有轮换滚动额
      

  5.   

    我之前也遇到过这问题,我直接把每张图片上面的alt加个参数,然后再ie8中可以正常跳了
      

  6.   

    var sina = { 
    $: function(objName) {
        if (document.getElementById) { 
            return eval('document.getElementById("' + objName + '")') 
        }else { 
            return eval('document.all.' + objName) 
        }
    }, 
    isIE: navigator.appVersion.indexOf("MSIE") != -1 ? true : false, addEvent: function(l, i, I) {
        if (l.attachEvent) {
            l.attachEvent("on" + i, I)
        }else { 
            l.addEventListener(i, I, false) 
        }
    }, 
    delEvent: function(l, i, I) {
        if (l.detachEvent) { 
            l.detachEvent("on" + i, I) 
        }else { 
            l.removeEventListener(i, I, false) 
        }
    }, 
    readCookie: function(O) {
        var o = "", l = O + "=";
        if (document.cookie.length > 0) {
            var i = document.cookie.indexOf(l);
            if (i != -1) {
                i += l.length;
                var I = document.cookie.indexOf(";", i);
                if (I == -1) {
                    I = document.cookie.length;
                } 
            o = unescape(document.cookie.substring(i, I))
            }
        };
        return o
    },
    writeCookie: function(i, l, o, c) {
        var O = "", I = "";
        if (o != null) {
            O = new Date((new Date).getTime() + o * 3600000); 
            O = "; 
            expires=" + O.toGMTString() 
        }; 
        if (c != null) { 
            I = ";domain=" + c 
        };
        document.cookie = i + "=" + escape(l) + O + I
    }, 
    readStyle: function(I, l) {
        if (I.style[l]) {
            return I.style[l] 
        }else if (I.currentStyle) { 
            return I.currentStyle[l] 
        }else if (document.defaultView && document.defaultView.getComputedStyle) { 
            var i = document.defaultView.getComputedStyle(I, null);
            return i.getPropertyValue(l) 
        }else {
            return null 
        }
        }
    };
      

  7.   

    //滚动图片构造函数
    //UI&UE Dept. mengjia
    //080623
    function ScrollPic(scrollContId, arrLeftId, arrRightId, dotListId) {
        this.scrollContId = scrollContId;
        this.arrLeftId = arrLeftId;
        this.arrRightId = arrRightId;
        this.dotListId = dotListId;
        this.dotClassName = "dotItem";
        this.dotOnClassName = "dotItemOn";
        this.dotObjArr = [];
        this.pageWidth = 0;
        this.frameWidth = 0;
        this.speed = 10;
        this.space = 10;
        this.pageIndex = 0;
        this.autoPlay = true;
        this.autoPlayTime = 3;
        var _autoTimeObj, _scrollTimeObj, _state = "ready";
        this.stripDiv = document.createElement("DIV");
        this.listDiv01 = document.createElement("DIV");
        this.listDiv02 = document.createElement("DIV");
        if (!ScrollPic.childs) { 
            ScrollPic.childs = [] 
        };
        this.ID = ScrollPic.childs.length;
        ScrollPic.childs.push(this);
        this.initialize = function() {
            if (!this.scrollContId) { 
                throw new Error("必须指定scrollContId."); return 
            };
            this.scrollContDiv = sina.$(this.scrollContId);
            if (!this.scrollContDiv) {
                throw new Error("scrollContId不是正确的对象.(scrollContId = \"" + this.scrollContId + "\")");
                return 
            };
        this.scrollContDiv.style.width = this.frameWidth + "px";
        this.scrollContDiv.style.overflow = "hidden";
        this.listDiv01.innerHTML = this.listDiv02.innerHTML = this.scrollContDiv.innerHTML;
        this.scrollContDiv.innerHTML = "";
        this.scrollContDiv.appendChild(this.stripDiv);
        this.stripDiv.appendChild(this.listDiv01);
        this.stripDiv.appendChild(this.listDiv02);
        this.stripDiv.style.overflow = "hidden";
        this.stripDiv.style.zoom = "1";
        this.stripDiv.style.width = "32766px";
        this.listDiv01.style.cssFloat = "left";
        this.listDiv02.style.cssFloat = "left";
        sina.addEvent(this.scrollContDiv, "mouseover", Function("ScrollPic.childs[" + this.ID + "].stop()"));
        sina.addEvent(this.scrollContDiv, "mouseout", Function("ScrollPic.childs[" + this.ID + "].play()"));
        if (this.arrLeftId) {
            this.arrLeftObj = sina.$(this.arrLeftId);
            if (this.arrLeftObj) {
                sina.addEvent(this.arrLeftObj, "mousedown", Function("ScrollPic.childs[" + this.ID + "].rightMouseDown()"));
                sina.addEvent(this.arrLeftObj, "mouseup", Function("ScrollPic.childs[" + this.ID + "].rightEnd()"));
                sina.addEvent(this.arrLeftObj, "mouseout", Function("ScrollPic.childs[" + this.ID + "].rightEnd()"))
            } 
        };
        if (this.arrRightId) {
            this.arrRightObj = sina.$(this.arrRightId);
            if (this.arrRightObj) {
                sina.addEvent(this.arrRightObj, "mousedown", Function("ScrollPic.childs[" + this.ID + "].leftMouseDown()"));
                sina.addEvent(this.arrRightObj, "mouseup", Function("ScrollPic.childs[" + this.ID + "].leftEnd()"));
                sina.addEvent(this.arrRightObj, "mouseout", Function("ScrollPic.childs[" + this.ID + "].leftEnd()"))
            } 
        };
        if (this.dotListId) {
            this.dotListObj = sina.$(this.dotListId);
            if (this.dotListObj) {
                var pages = Math.round(this.listDiv01.offsetWidth / this.frameWidth + 0.4), i, tempObj;
                for (i = 0; i < pages; i++) {
                    tempObj = document.createElement("span");
                    this.dotListObj.appendChild(tempObj);
                    this.dotObjArr.push(tempObj);
                    if (i == this.pageIndex) {
                        tempObj.className = this.dotClassName
                     }else { 
                         tempObj.className = this.dotOnClassName 
                     };
                     tempObj.title = "第" + (i + 1) + "页";
                     sina.addEvent(tempObj, "click", Function("ScrollPic.childs[" + this.ID + "].pageTo(" + i + ")"))
                     } 
                 } 
             };
             if (this.autoPlay) { 
                 this.play() 
             } 
        };
        this.leftMouseDown = function() {
            if (_state != "ready") {
                return 
            };
            _state = "floating";
            _scrollTimeObj = setInterval("ScrollPic.childs[" + this.ID + "].moveLeft()", this.speed)
        };
        this.rightMouseDown = function() {
            if (_state != "ready") {
                return
            };
            _state = "floating";
            _scrollTimeObj = setInterval("ScrollPic.childs[" + this.ID + "].moveRight()", this.speed)
        };
        this.moveLeft = function() {
            if (this.scrollContDiv.scrollLeft + this.space >= this.listDiv01.scrollWidth) {
                this.scrollContDiv.scrollLeft = this.scrollContDiv.scrollLeft + this.space - this.listDiv01.scrollWidth
            }else { 
                this.scrollContDiv.scrollLeft += this.space 
            };
            this.accountPageIndex()
        };
        this.moveRight = function() {
            if (this.scrollContDiv.scrollLeft - this.space <= 0) {
                this.scrollContDiv.scrollLeft = this.listDiv01.scrollWidth + this.scrollContDiv.scrollLeft - this.space
            }else { 
                this.scrollContDiv.scrollLeft -= this.space 
            };
            this.accountPageIndex()
        };
        this.leftEnd = function() {
            if (_state != "floating") {
                return 
            };
            _state = "stoping";
            clearInterval(_scrollTimeObj);
            var fill = this.pageWidth - this.scrollContDiv.scrollLeft % this.pageWidth;
            this.move(fill)
        };
        this.rightEnd = function() {
            if (_state != "floating") { 
                return 
            };
            _state = "stoping";
            clearInterval(_scrollTimeObj);
            var fill = -this.scrollContDiv.scrollLeft % this.pageWidth; 
            this.move(fill)
        };
        this.move = function(num, quick) {
            var thisMove = num / 5;
            if (!quick) {
                if (thisMove > this.space) {
                    thisMove = this.space 
                };
                if (thisMove < -this.space) { 
                    thisMove = -this.space
                } 
            };
            if (Math.abs(thisMove) < 1 && thisMove != 0) { 
                thisMove = thisMove >= 0 ? 1 : -1 
            }else { 
                thisMove = Math.round(thisMove) 
            };
            var temp = this.scrollContDiv.scrollLeft + thisMove;
            if (thisMove > 0) {
                if (this.scrollContDiv.scrollLeft + thisMove >= this.listDiv01.scrollWidth) {
                    this.scrollContDiv.scrollLeft = this.scrollContDiv.scrollLeft + thisMove - this.listDiv01.scrollWidth
                }else { 
                    this.scrollContDiv.scrollLeft += thisMove 
                } 
            }else {
                if (this.scrollContDiv.scrollLeft - thisMove <= 0) {
                    this.scrollContDiv.scrollLeft = this.listDiv01.scrollWidth + this.scrollContDiv.scrollLeft - thisMove
                }else { 
                    this.scrollContDiv.scrollLeft += thisMove 
                } 
            };
            num -= thisMove;
            if (Math.abs(num) == 0) {
                _state = "ready";
                if (this.autoPlay) { 
                    this.play() 
                };
                this.accountPageIndex();
                return
            }else {
                this.accountPageIndex();
                setTimeout("ScrollPic.childs[" + this.ID + "].move(" + num + "," + quick + ")", this.speed)
            } 
        };
        this.next = function() {
            if (_state != "ready") {
                return 
            };
            _state = "stoping";
            this.move(this.pageWidth, true)
        };
        this.play = function() {
        if (!this.autoPlay) { 
            return 
        };
        clearInterval(_autoTimeObj);
        _autoTimeObj = setInterval("ScrollPic.childs[" + this.ID + "].next()", this.autoPlayTime * 1000)
    };
    this.stop = function() { 
        clearInterval(_autoTimeObj) 
    };
    this.pageTo = function(num) {
        if (_state != "ready") { 
            return 
        };
        _state = "stoping";
        var fill = num * this.frameWidth - this.scrollContDiv.scrollLeft;
        this.move(fill, true)
    };
    this.accountPageIndex = function() {
        this.pageIndex = Math.round(this.scrollContDiv.scrollLeft / this.frameWidth);
        if (this.pageIndex > Math.round(this.listDiv01.offsetWidth / this.frameWidth + 0.4) - 1) { this.pageIndex = 0 };
            var i;
            for (i = 0; i < this.dotObjArr.length; i++) {
                if (i == this.pageIndex) { 
                    this.dotObjArr[i].className = this.dotClassName 
                }else { 
                    this.dotObjArr[i].className = this.dotOnClassName 
                }
            }
        }
    };
      

  8.   

    没有人回答,看来大家都不喜欢看很长的代码,最终问题是解决了,谢谢各位的关注。通过在网页 head 中添加代码 <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />,能够一直循环播放了,不过我也没发现代码有什么问题, js 浏览器兼容性 问题,是个很头疼的问题,希望js 高手们,能够给予指点,不吝赐教。
      

  9.   

    为什么我添加了<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
    还是不能正常滚动呢?
      

  10.   

    我对比过ie和ff的就是因为this.listDiv01.scrollWidth的取值不同。ie是取32766的而ff是取实际多少图片的大小的。就算修改为实际的大小时,还有一个问题:如有九张图的。滚到第七张时,右边出现空白的。直至滚完第九张才会正常出现第一张图片。
      

  11.   

    问题解决:添加this.listDiv01.style.display="inline";this.listDiv02.style.display="inline";在js中就行了。
      

  12.   

    兼容性问题,我也查了一天啊,加上meta解决