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

后端 未结 8 907
遥遥无期
遥遥无期 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:31

    +1 for the earlier answer about variable names. This in IE8:

    title = button.attr('title'); <-- Object doesnt support this method
    
    $title = button.attr('title'); <-- OK!
    

提交回复
热议问题