📜  如何访问不同脚本文件中的变量 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:19.232000             🧑  作者: Mango

代码示例1
// first.js...(first script file)
var colorCodes = {
  back  : "#fff",
  front : "#888",
  side  : "#369"
};

//in another file...(second script file)
alert(colorCodes.back); // alerts `#fff`

//in your html...