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.
在下面的代码中,如果我想添加多个类或 ID,我该怎么做呢?
$("#main-content").customScrollbar();
所以,假设我想customScrollbar();同时应用于#main-content和.song-list。我可以用逗号分隔它们吗?
customScrollbar();
#main-content
.song-list
利用,
,
$("#main-content,.song-list").customScrollbar();