怎么循环六个不同css样式

2025-06-22 08:44:15
推荐回答(1个)
回答1:

$("ul > li > a").each(function() {
    alert("current class name is  " + this.className);
});