gpt4 book ai didi

javascript - 在 d3 中单击按钮执行 Javascript 文件

转载 作者:太空宇宙 更新时间:2023-11-04 02:20:26 25 4
gpt4 key购买 nike

我在node.js中有一个d3图。在此图中我正在调用

d3.select("#updatebutton").on("click", function(e) {
//execute another js-file and reload the graph
}

我想要做的是:单击更新按钮时我想执行另一个 javascript 文件(wiki.js),然后重新加载图表(就像在网络浏览器中重新加载)。

这可能吗?我很高兴能得到一些帮助!谢谢!

最佳答案

您可以简单地将脚本元素添加到头部:

d3.select("#updatebutton").on("click", function(e) {
//execute another js-file
var scriptElement = document.createElement('script');
scriptElement.onload = function(){
//and redraw the graph
}
scriptElement.src = "wiki.js";
document.head.appendChild(scriptElement);
})

关于javascript - 在 d3 中单击按钮执行 Javascript 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33690253/

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