我已经阅读并理解了一个描述如何向函数添加参数的问题。我想知道如何使更多模块化代码和插件更加严格。我将如何在您的插件或函数中创建default
参数值和用户?options
$('.pluginAttachment').yourCoolPlugin({
parameter1: false, //User added
//the rest of the options
//Still adds the rest of the default options except above
});
我知道这些是变量,但我不确定如何将它们作为User
可以优先于默认值的参数交织到整个函数中。