Internet explorer says Object doesn't support this property or method

后端 未结 8 962
遥遥无期
遥遥无期 2021-01-07 03:14

This line is 79:

window.addEvent(\'domready\', function(){     
    mySlide = new Fx.Slide(\'advert\');
    mySlide.hide();
});

It also doe

8条回答
  •  暖寄归人
    2021-01-07 03:29

    This can also happen if you don't have a comma in a list of variables, like the 'f' variable below :

    var a = 'aaaa',
        f = 'ffff'
        b = someObject.attribute;
    

提交回复
热议问题