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的样式改成“block”。
类名不能有空格。空格分隔多个类名。
所以对于这样的元素:
<ul class="class1 class2">
你可能会使用这个:
$(document.body).getElements(".class1.class2")
重要的是让两个类选择器之间没有空格。