본문 바로가기
html | css | jsp

Vanilla Java Script

by 개폰지밥 2019. 10. 1.
반응형

l  visual studio code 설치

https://code.visualstudio.com

당황 스러울정도로 너무 쉬움 next 계속 누르면 됨

l  Vanilla js 다운로드

http://vanilla-js.com/

Vanilla jsdocument.getElementById(‘text-table’);를 다 바꿔서 쓴 것이다.

l  repl 다운로드

위에서 다운로드라고 했지만 다운로드 안해도 돌릴 수 있음. 회원 가입만 하면 됨.

그렇기 때문에 작은프로젝트 할 때는 repl 사용 큰 것 할 때는 vscode 사용

아래는 회원가입하는 방법임.

https://repl.it/

 

 

위까지 하고 다시 repl.it 아이콘 클릭하고 start coding now 클릭하기

하고 싶은 언어 선택하면 된다. 나는 우선 html css js 선택

 

This works! 출력과 alter을 띄우고 싶다면 index.html -> style.css -> script.js를 작성한다.

<index.html>

<!DOCTYPE html>

<html>

  <head>

    <title>Something</title>

    <link rel="stylesheet" href="style.css"/>

  </head>

  <body>

    <h1>This works!</h1>

    <script src="script.js"></script>

  </body>

</html>

 

 

<style.css>

body{

  background-color: peru;

}

 

h1{

  color:white;

}

 

 

<script.js>

alert('im working. im js. im beautiful. im worth it');

console.log('im working. im js. im beautiful im worth it');

 

*주의해야 할 점

Js 파일은 항상 body 아래에 있어야 한다.

제일 마지막에 추가를 해야한다.

반응형

'html | css | jsp' 카테고리의 다른 글

ajax  (0) 2019.11.14
html - Bulletin Board Management System(게시판 관리 시스템)  (0) 2019.05.31
jsp - Member Management System(회원관리 시스템)  (0) 2019.05.31
html - login page  (0) 2019.05.29

댓글