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); }); });
動作完了:)