gpt4 book ai didi

javascript - JQuery 函数访问

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

你好,我正在使用 jquery splitter 小部件

JQuery splitter widget

并且我能够按照文档所述对其进行初始化

$('#foo').split({
orientation: 'horizontal',
limit: 10,
position: '50%' // if there is no percentage it interpret it as pixels
});

我不知道该怎么做(因为我的 jquery 知识很差)是如何销毁它我可以在 js 中看到有一个函数 destroy 但我不知道如何销毁它访问它。

splitter javascript

我尝试过类似的方法

$('#foo').destroy();

$('#foo').split('destroy');

但这不起作用。

你能帮我解决这个问题吗?

非常感谢您提供的任何帮助。最好的问候团队ol

最佳答案

您应该能够将实例分配给变量,然后通过引用访问 destroy 方法。

var mySplitter = $('#foo').split({
orientation: 'horizontal',
limit: 10,
position: '50%' // if there is no percentage it interpret it as pixels
});

// then you can do
mySplitter.destroy();

关于javascript - JQuery 函数访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26384170/

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