我正在使用 jQuery,我有 2 个不同的 js 文件。
文件_1.js
$(document).ready(function(){
var A = 'varA';
});
文件_2.js
$(document).ready(function(){
console.log(A); // will get an A is undefined because of this closure thing
});
有没有办法从另一个文件中访问一个文件中的一个变量?我需要所有代码都在 $(document).ready(...)
我使用的一种解决方案是使变量成为全局变量(不使用 var A)有什么更好的吗?