Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 안드로이드
- 한글
- java
- C lanuage
- 프래그먼트
- javascript
- php
- NGINX
- caddy
- ubuntu
- 구글
- H2O
- it
- kakao
- unity
- 해석
- 자바
- MySQL
- 컴퓨터과학총론
- 번역
- centOS7
- server
- error
- techEmpower
- Portfolio
- mariadb
- android
- 개발자
- 개발
- C
Archives
- Today
- Total
개발모음집
How to insert js file in js file in client side 본문
(client side) a.js 안에 b.js import 하는 방법
1. js파일들을 mjs 확장자로 바꾼다.
2. b.mjs 파일을 a.mjs 파일 안에 import한다.
import b from 'b.mjs';
3. html 파일에 a파일을 module타입으로 불러온다.
<script type="module" src="a.mjs"></script>
출처 :
'client' 카테고리의 다른 글
array에 값넣을 때 조심해야할 점 (0) | 2019.12.26 |
---|---|
how to get json value in javascript (0) | 2019.12.09 |
Node.JS : WebStorm “require”사용시 Unresolved function or method Error (0) | 2019.11.27 |
TypeError: this.cliEngine is not a constructor (0) | 2019.10.30 |
JSON 구조를 객체쓰지 않고 만들때 실수한 점 (0) | 2019.10.14 |