我正在开发一个小型 JavaScript 框架,我需要知道如何为函数添加一些选项,以便用户可以为特定方法设置自己的设置。
这是我创建的示例函数方法
$.prototype = {
setCenter: function() {
this.e.style.position = 'absolute';
this.e.style.top = '50%';
this.e.style.left = '50%';
this.e.style.marginLeft = '-50px';
this.e.style.marginTop = '-50px';
return this;
}
};
我期望开发它来处理以下选项集。
*我没有使用 JQuery,我需要一个纯 JavaScript 解决方案。 这是一个示例代码,可能不是真实的,但只是明白了。
$('sampleDiv').setCenter({
animate:true, fade:true
});
帮我解决这个问题,我感谢任何试图回答这个问题的人。谢谢 !