如何在2个JavaScript文件之间使用全局变量

时间:2018-12-20 19:05:12

标签: javascript jquery html

我有2个JavaScript文件,在为第一个js文件中的变量赋值后,我试图在第二个JavaScript文件中记录 变量。在第一个js文件中,我想打开一个新窗口(另一个.html文件),其变量为 log -d

main.js :(第一个)

var apple;
document.getElementById("next").addEventListener("click", function(){
    apple = "apple ";
    console.log(apple ); //log: apple

    window.open("second.html", "_top");
});

2nd.js:

function test(){
$(document).ready(function(){
    console.log(apple); //log: undefined

});

1 个答案:

答案 0 :(得分:0)

尝试 window.GlobalVar = 'apple'window[DynamicVar] = apple

如果要扩展,请选中this