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.
我有那个元素:
<span class="class1 class2">...</span>
如何使用 Prototype JS 的两个类来选择这个元素?也许像这样?
$$(span.class1.class2)
谢谢!
几乎,你只是忘了把它放在一个字符串中:
$$('span.class1.class2')
您还拥有本机浏览器支持:
document.querySelector('span.class1.class2')
这比使用任何其他包装器更快。