我正在使用一个名为Gridster的jquery插件。

http://gridster.net/

初始化网格时,我尝试为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>

最佳答案

刚遇到同样的问题。如果要使用on_overlap_stopon_overlap_start,则需要同时提供它们。这样就不会显示任何错误。

关于javascript - Gridster on_overlap_stop覆盖,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12080123/

10-11 13:09