现在我有一个看起来像这样的函数:
function hidearray() {
$('#one, #two, #three').hide();
}
我想将这些 ID 放入 1 个数组中,看起来像
var myArray['one', 'two', 'three'];
然后将该数组隐藏在我的函数 hidearray() 中。我以为它看起来像这样,但我想我走错了路(我也知道我忽略了下面语句中的#)
$(.each(myArray)).hide();
解决方案可能很简单,所以感谢所有回复!