0
我已閱讀&瞭解a question,它描述瞭如何向函數添加參數。我想知道如何讓更多的模塊化代碼和插件更加嚴格。我將如何去創建default
參數值和用戶options
在您的插件或您的功能?在JavaScript或jQuery中創建用戶可配置功能
$('.pluginAttachment').yourCoolPlugin({
parameter1: false, //User added
//the rest of the options
//Still adds the rest of the default options except above
});
我明白,這些都是變量,但我不知道如何將它們交織成整體功能爲User
參數,可以將採取遵於默認。
找到我需要這裏的信息:http://stackoverflow.com/questions/4200701/jquery-plugin-methods-how-can-i-pass-things-into-them?rq=1 – m33bo