我正在使用以下简单的 jquery 函数,但我想在具有不同类的多个元素上使用它。如何使用数组使我的代码更短?
$(function() {
$('.red').attr("href", "images/gallery/redSmall.jpg");
$('.blue').attr("href", "images/gallery/blueSmall.jpg");
$('.green').attr("href", "images/gallery/greenSmall.jpg");
$('.black').attr("href", "images/gallery/blackSmall.jpg");
});
谢谢你