我正在使用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
显示了一些类似示例的内容答案 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()