我正在使用一个名为 Gridster 的 jquery 插件。
在初始化我的网格时,我试图设置一个回调,collision.on_overlap_stop
但是每次我设置它时,程序都会在 gridster 代码中引发各种错误。
有没有其他人遇到过这个问题?
代码示例:
<script type="text/javascript">
var gridster;
$(function(){
gridster = $(".gridster ul").gridster({
widget_margins: [10, 10],
widget_base_dimensions: [140, 140],
draggable: {
stop: function(event, ui)
{
//code...
}
},
collision:
{
//this function doesn't seem to be called and when this function is set the page crashes.
on_overlap_stop: function(collider_data)
{
//code....
}
},
}).data('gridster');
});
</script>