发布于: 性能

在大批量元素上更改 CSS 时使用样式表

如果您正在使用 .css() 更改超过 20 个元素的 CSS,请考虑改为向页面添加 style 标签,这样可以将速度提升近 60%。

1
2
3
4
5
6
// Fine for up to 20 elements, slow after that:
$( "a.swedberg" ).css( "color", "#0769ad" );
// Much faster:
$( "<style type=\"text/css\">a.swedberg { color: #0769ad }</style>")
.appendTo( "head" );