没有html文件 index.js文件中引入其他js文件
时间: 2023-09-13 09:05:59 浏览: 174
在html中引入外部js文件,并调用带参函数的方法
如果你想在 HTML 文件中引入 JavaScript 文件,可以使用 `<script>` 标签。在 HTML 文件的 `<head>` 或 `<body>` 部分中添加以下代码:
```html
<head>
<script src="path/to/your/javascript/file.js"></script>
</head>
```
其中 `path/to/your/javascript/file.js` 是你的 JavaScript 文件的路径。
如果你在 `index.js` 文件中想要引入其他 JavaScript 文件,可以使用 `import` 或 `require`。例如:
```js
// 使用 import
import otherFile from './path/to/other/file.js';
// 使用 require
const otherFile = require('./path/to/other/file.js');
```
在这里,`./path/to/other/file.js` 是你想要引入的 JavaScript 文件的路径。注意,使用 `import` 或 `require` 语句需要在 Node.js 环境或支持 ES6 模块的浏览器中运行。
阅读全文