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.
mootools では、クラス名にスペースが含まれる UL をどのように選択できますか。私はmootools 1.3.2を使用しています。
この UL のスタイルを「ブロック」に変更する必要があります。
クラス名にスペースを含めることはできません。複数のクラス名はスペースで区切ります。
したがって、次のような要素の場合:
<ul class="class1 class2">
あなたはこれを使うかもしれません:
$(document.body).getElements(".class1.class2")
重要なことは、2 つのクラス セレクターの間にスペースを入れないことです。