gpt4 book ai didi

JavaScript:导入脚本

转载 作者:行者123 更新时间:2023-12-02 18:04:11 24 4
gpt4 key购买 nike

我想知道是否有一种方法可以将脚本从 javascript 脚本导入到另一个 javascript 脚本。

例如,

import script.js //obviously it is wrong.

我们来谈谈脚本 1:

function hello(){
console.log(1+2);
}

我想在脚本 2 上使用脚本 1 中定义的函数。

因此,脚本 2 应该具有:

 hello();

并且应该在网页上生成此内容:

3

我去研究答案,但我不明白代码。有人可以一步一步解释一下吗?

最佳答案

var script = document.createElement("script");

script.src = "script1.js"; // set the url of script you want

var body = document.getElementsByTagName("body")[0];

body.appendChild(script); // append script to body will load the script and execute it

关于JavaScript:导入脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20256217/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com