📜  js 导入 - Javascript 代码示例

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

代码示例6
//A function cannot be called unless it was defined in the same file or one loaded before the attempt to call it.
//A function cannot be called unless it is in *the same or greater scope* than the one trying to call it.
//You declare function fn1() in First.js, and then in Second.js you can just call fn1();
//In this case, you need to make sure that First.js and Second.js are in the same folder, or that First's folder is of a higher hierarchy than Second's.

//First.js
function fn1() {
    alert();
}

//Second.js
function foo() {
    fn1();
}