Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这个可以用吗。
$('myElement').addClass('newClass');
并为每个元素添加如何获得一个新类的数字。像这样
myElement 1 = newClass_1 myElement 2 = newClass_2 myElement 3 = newClass_3
所有 myElement 都具有相同的类。(对不起,写了 ID,但意思是类;))
最好的问候马蒂亚斯
所以我找到了一个更短的解决方案:
window.addEvent("domready", function(){ $$(".submenu").each(function(item, i){ var number = i; item.addClass("item" + number); console.log(item); }); });
作品完美:)