我在file.js(DOM对象的数组)中有一个名为VLIST的数组
需要将这个矩阵保存到文件中。 html
我怎样才能做到这一点?

我尝试过,我无法使用方法

botoes.js:

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


index.html:

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

xzz = getVList();

console.log(xzz);


console.log:

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/

10-10 17:09