这是我的主文件:
$(document).ready(function () {
function Page() {
this.menu = new Menu();
this.management = new Management();
this.text = "text";
}
window.Page= Page();
});
现在我想从其他所有 JS 文件访问页面:
我试过这个:
console.log(Page.text);
给我 :Uncaught ReferenceError: Page is not defined
试过这个:
console.log(window.Page.text);
给我 :Uncaught TypeError: Cannot read property 'text' of undefined
我究竟做错了什么?