1

我有一个针对它初始化了 gridstack 的元素。

我想保存并重新加载我的页面,并且我希望网格在页面加载时可用。因此,当我加载页面时,我想重新初始化 gridstack 元素。

问题是它只是将重复的类添加到元素及其子元素中。

<div class="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" style="z-index: 90; display: none;"></div>    
    <div class="ui-resizable-handle ui-resizable-sw" style="z-index: 90; display: none;"></div>    
    <div class="ui-resizable-handle ui-resizable-se ui-icon ui-icon-gripsmall-diagonal-se" style="z-index: 90; display: none;"></div>    
    <div class="ui-resizable-handle ui-resizable-sw" style="z-index: 90; display: none;"></div>

我也将多个类添加到根元素中:

class="grid-stack grid-stack-instance-4036 grid-stack-instance-4052"

那么重新初始化网格的最佳方法是什么?

4

1 回答 1

0

所以这是我对这个问题的解决方案:

var stacks = $(".grid-stack");
stacks.each(function () {
            var grid = $(this).data("gridstack");
            if (typeof grid !== "undefined") {
                  grid.destroy(false);
            }

            //use regex to remove the multiple classnames
            $(this).removeClass(function (index, className) {
                  return (className.match(/(^|\s)grid-stack-instance-\S+/g) || []).join(" ");
            });
            $(this).find(".ui-resizable-handle").remove();
});
于 2019-08-15T12:40:49.890 回答