如何在gridster.js中添加自定义方法?

时间:2014-12-15 10:09:24

标签: javascript widget custom-controls gridster

我正在使用Gridster Library。它提供了像add_widget,Remove_widget,resize,Draggable等方法。 我想在其JS文件中创建我自己的方法并使用它

代表E.G

脚本文件

$(function(){$(".gridster ul").gridster({
        widget_margins: [10, 10],
        widget_base_dimensions: [140, 140],
        animate: true,
       Custom_Method:{enable:true}
    })
}).data('gridster');

我的custom_method

显示了一些类似示例的内容

1 个答案:

答案 0 :(得分:0)

$(function(){$(".gridster ul").gridster({
    widget_margins: [10, 10],
    widget_base_dimensions: [140, 140],
    animate: true,
   customMethod:function(){enable:true} //Your custom method
})

})的数据(' gridster&#39);

//访问

$(".gridster ul").gridster().data('gridster').options.customMethod()