您的位置 首页 > 数码极客

js文件如何引用其他文件内容

ES6 Modules (Browsers)

浏览器从Safari 10.1、Chrome 61、Firefox 60和Edge 16开始支持直接加载ECMAScript模块(不需要Webpack等工具)。

不需要使用Node.js的扩展名;浏览器完全无视模块/脚本的文件扩展名。

<script type="module"> import { hello } from '.;; hello('world'); </script>export function hello(text) { const div = document.createElement('div'); div.textContent = `Hello ${text}`; document.body.appendChild(div); }

ES6 Modules (Browsers+Dynamic)

脚本根据需要动态加载其他的js文件。

<script type="module"> import(';).then(module => { module.hello('world'); }); </script>

ES6 Modules )

module.exports = { hello: function() { return "Hello"; } }const myModule = require('./mymodule'); let val = myModule.hello(); // val is "Hello"

Fetch

fetchInject([ '; ]).then(() => { con(`Finish in less than ${moment().endOf('year').fromNow(true)}`) })

Script标签加载

HTML中添加一个带有脚本URL的脚本标签。

脚本甚至可以在不同的服务器上(),<script>标签注入到网页的<head>中,或者插入到关闭的</body>标签之前。

//头部引入 function dynamicallyLoadScript(url) { let script = document.createElement("script"); = url; document.(script); // 添加在头部引入 }//添加异步回调 callback function dynamicallyLoadScript(url, callback) { //将脚本标签添加到头部 let script = document.createElement('script'); = 'text/javascript'; = url; //然后将事件绑定到回调函数上。 = callback; = callback; //跨浏览器兼容。 // 加载 document.(script)。 }

责任编辑: 鲁达

1.内容基于多重复合算法人工智能语言模型创作,旨在以深度学习研究为目的传播信息知识,内容观点与本网站无关,反馈举报请
2.仅供读者参考,本网站未对该内容进行证实,对其原创性、真实性、完整性、及时性不作任何保证;
3.本站属于非营利性站点无毒无广告,请读者放心使用!

“js文件如何引用其他文件内容”边界阅读