如何在jquery自定义插件中保存扩展属性?

时间:2014-10-13 03:29:19

标签: jquery plugins

(function ($, undefined) {
    $.fn.InitFixedGrid  = function (args) {
    },

    $.fn.FixedGridSizeChagned = function (args) {
        // Here, I have to find out each of FixedColumn number for abc_grid01 and abc_grid02
    }
})(jQuery);


// Call usages

$("#abc_grid01").InitFixedGrid( { FixedColumn: 1 } );
$("#abc_grid02").InitFixedGrid( { FixedColumn: 2 } );
$("#abc_grid02").FixedGridSizeChagned( { Order: 0 } );

这是我的自定义jquery插件结构。

当调用FixedGridSizeChagned时,我必须得到FixedColumn属性的数字2。

如何保存此属性并稍后调用?

0 个答案:

没有答案