我有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
});