0

有没有这样的功能:

$.show('#anID, .aClass, .anotherClass, #anotherID');

不想每次都写

$('#anID').show();
$('.aClass').show();
// etc...
4

1 回答 1

1

您将选择器和功能混淆了:

$('#anID, .aClass, .anotherClass, #anotherID').show();
于 2013-10-22T07:53:59.080 回答