我可以將下面的代碼重寫爲不太重複的代碼嗎?.removeClass對多個項目?
$("#iTUNES").click(function()
{
createLastEdition(26);
$("#Beatport").removeClass("Active");
$("#Spotify").removeClass("Active");
$("#Youtube").removeClass("Active");
$("#iTunes").addClass("Active");
});
例如像這樣
$("#Beatport","#Spotify,"#Youtube").removeClass("Active")
?
因此,'$( 「#Beatport,Spotify的#,#的Youtube」)。removeClass(「活動「)' – underscore
可能重複的[如何選擇多個jQuery對象?](http://stackoverflow.com/questions/18132648/how-to-select-multiple-jquery-objects) – isherwood