下面的JS代码 IE提示:消息: 对象不支持此属性或方法 行: 7 字符: 6 代码: 0 怎么解决

Glider=Class.create();Object.extend(Object.extend(Glider.prototype,Abstract.prototype... Glider = Class.create();
Object.extend(Object.extend(Glider.prototype, Abstract.prototype), {
initialize: function(wrapper,options){
this.scrolling = false;
this.wrapper = $(wrapper);
this.scroller = this.wrapper.down('div.scroller');
this.section = this.wrapper.getElementsBySelector('div.section');
this.options = Object.extend({ duration: 1.0, frequency: 3 }, options || {});

this.sections.each( function(section, index) {
section._index = index;
});

this.events = {
click: this.click.bind(this)
};

this.addObservers();
if(this.options.initialSection) this.moveTo(this.options.initialSection, this.scroller, { duration:this.options.duration }); // initialSection should be the id of the section you want to show up on load
if(this.options.autoGlide) this.start();
},

addObservers: function() {
var controls = this.wrapper.getElementsBySelector('div.controls a');
controls.invoke('observe', 'click', this.events.click);
},

click: function(event) {
this.stop();
var element = Event.findElement(event, 'a');
if (this.scrolling) this.scrolling.cancel();

this.moveTo(element.href.split("#")[1], this.scroller, { duration:this.options.duration });
Event.stop(event);
},

moveTo: function(element, container, options){
this.current = $(element);

Position.prepare();
var containerOffset = Position.cumulativeOffset(container),
elementOffset = Position.cumulativeOffset($(element));

this.scrolling = new Effect.SmoothScroll(container,
{duration:options.duration, x:(elementOffset[0]-containerOffset[0]), y:(elementOffset[1]-containerOffset[1])});
return false;
},

next: function(){
if (this.current) {
var currentIndex = this.current._index;
var nextIndex = (this.sections.length - 1 == currentIndex) ? 0 : currentIndex + 1;
} else var nextIndex = 1;

this.moveTo(this.sections[nextIndex], this.scroller, {
duration: this.options.duration
});
},
我用的是 IE8
展开
 我来答
runjia1987
2010-09-13 · TA获得超过914个赞
知道小有建树答主
回答量:601
采纳率:100%
帮助的人:194万
展开全部
this.section = this.wrapper.getElementsBySelector('div.section');
不支持此属性或方法调用。
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
幸叶孤帆nM
2010-09-13
知道答主
回答量:36
采纳率:0%
帮助的人:25.6万
展开全部
html代码也贴出来吗
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式