gpt4 book ai didi

javascript - JQuery - 我如何获得 “file.JS” 的变量

转载 作者:行者123 更新时间:2023-11-30 05:47:46 25 4
gpt4 key购买 nike

我在 file.js 中有一个名为 VLIST 的数组(DOM 对象数组)需要在文件中拯救这个矩阵。网页格式我该怎么做?

我试过了,但我不能使用方法

botoes.js:

vList = [];
function getVList(vList){
vList = vList;
return vList;
};

index.html:

 function setVList() {
return getVList(vList);
}

xzz = getVList();

console.log(xzz);

控制台日志:

Uncaught ReferenceError: getVList is not defined 

我试图关注这篇文章,但我做不到: Can we call the function written in one JavaScript in another JS file?

有人知道怎么做吗?

从现在开始,谢谢大家。

最佳答案

不需要所有的功能:)

botoes.js

var vList=['bla','blabla'];

index.html

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>vlist</title>
<script src="botoes.js"></script>
<script>
console.log(vList);
</script>
</head>
<body>
</body>
</html>

关于javascript - JQuery - 我如何获得 “file.JS” 的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16902818/

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