这是我所说的与ie8有问题的图库: http://tympanus.net/codrops/2014/03/21/google-grid-gallery/
这是js中断的行:
var x = this.grid.querySelectorAll( 'li:not(.grid-sizer)' );
但我认为问题早得多。当我尝试使用ie8的开发工具进行调试时,没有"这个"在本地选项卡中。
答案 0 :(得分:1)
Internet Explorer 8支持querySelectorAll
,但不支持:not
pseudo-class。我们确实在Internet Explorer 9中为后者提供了支持,但如果您想在IE 8中使用它,那么最好使用jQuery,从版本1开始it has been supported。
如果您希望支持IE 8,请务必下载并使用1.x版本的jQuery。