覆盖jQuery插件中的默认属性

时间:2010-12-29 02:35:42

标签: javascript jquery

有人可以解释覆盖默认属性,甚至在我的插件示例中使用jQuery扩展它们以及闭包函数

$.fn.myObject = function(overwriteProperties) {
    var properties = {myproperty1: "defaultvalue"}
    // overwrite properties here
    function doStuffHere() {

    }
    return (function() {
        return this; // does this part here refer to the object of myDiv
    });
} 
$('#myDiv').myObject({myPoperty1:"newValue"});

1 个答案:

答案 0 :(得分:8)

您可以使用jQuery的extend覆盖默认选项:

var options = $.extend({}, defaults, options);

另见: