gpt4 book ai didi

javascript - 这些回调如何适应配置对象?

转载 作者:行者123 更新时间:2023-11-28 20:21:25 25 4
gpt4 key购买 nike

我喜欢 gridster.js,但我不知道如何使用它的回调。 documentation声明以下内容可以传递到 Gridster 配置对象中:

draggable.stop: function(event, ui){}
// A callback for when dragging stops.

这是我正在尝试的,但我在draggable.stop行上收到错误Uncaught SyntaxError: Unexpected token .

var gridster = $(".gridster ul").gridster({
widget_margins: [5, 5],
widget_base_dimensions: [90, 90],
draggable.stop: function(){console.log("drag completed")}
}).data('gridster');

此处使用的正确语法是什么?

最佳答案

这似乎意味着您提供的 draggable 选项需要是对象文字,并且您将 stop 属性指定为回调。像这样的东西:

var gridster = $(".gridster ul").gridster({
widget_margins: [5, 5],
widget_base_dimensions: [90, 90],
draggable: {
stop: function () {
console.log("drag completed");
}
}
}).data("gridster");

似乎在这里得到了确认:https://github.com/ducksboard/gridster.js/issues/18

关于javascript - 这些回调如何适应配置对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18265666/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com