코린이의 기록

[javascript] 모듈화 js 분리 본문

javascript,HTML,CSS

[javascript] 모듈화 js 분리

코린이예요 2018. 8. 20. 15:45
반응형


1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8"/>
    <script src="greeting.js"></script>
</head>
<body>
    <script>
        alert(welcome());
    </script>
</body>
</html>
cs
main.html


1
2
3
function welcome(){
    return 'Hello world';
}
cs

greeting.js






반응형
Comments