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.
有没有这样的功能:
$.show('#anID, .aClass, .anotherClass, #anotherID');
不想每次都写
$('#anID').show(); $('.aClass').show(); // etc...
您将选择器和功能混淆了:
$('#anID, .aClass, .anotherClass, #anotherID').show();