我在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?
任何人都知道怎么做?
从现在开始,谢谢大家。
答案 0 :(得分:1)
不需要所有功能:)
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>