jQueryに関数があります
jQuery(function () {
jQuery(".one").showcase({
animation: { type: "fade" },
titleBar: { autoHide: false },
navigator: { autoHide: true }
});
prettyPrint();
jQuery(".two").showcase({
animation: { type: "fade" },
titleBar: { autoHide: false },
navigator: { autoHide: true }
});
prettyPrint();
jQuery(".three").showcase({
animation: { type: "fade" },
titleBar: { autoHide: false },
navigator: { autoHide: true }
});
prettyPrint();
});
上記のコードに注意してください。ショーケース機能を3回繰り返します。配列ごとに一度関数を作成したい。どうすればそれが可能になりますか。jQuery配列の例を見ましたが、理解できません。