我在 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();
});
现在注意上面的代码。我重复展示功能三遍。我想通过数组创建一次函数。怎么可能。我看到了 jQuery 数组示例,但无法理解。