gpt4 book ai didi

javascript - 如何调用 jQuery-wrapper 的内部函数 $(function() { }?

转载 作者:搜寻专家 更新时间:2023-11-01 04:55:29 27 4
gpt4 key购买 nike

我在 jQuery-wrapper 中有一个函数 changeGraph(),我需要从它的外部以某种方式调用它。我需要从基于 jQuery 的图形库 Flot 访问函数 setData。

源代码是这样的:

function changeGraph(){
// I need to access $.plot.setData somehow
};

var d2 = [[0, 0], [20, 300000]];

$(function () {
$.plot($("#placeholder"),
[{color: "#000000", data: d2}],
{

series: {
lines: { show: true, fill:true, fillColor: {colors: [ "#d1ddea","#8e959d"]}},
points: { show: false }
}
}
);


});

我怎样才能做到这一点?

最佳答案

var changeGraph;

$(function () {

changeGraph = function () {
// Need to access $.plot($("#placeholder") here
};

});

changeGraph(); // call this when document is ready at least

关于javascript - 如何调用 jQuery-wrapper 的内部函数 $(function() { }?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6486525/

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