티스토리 뷰

자바스크립트 코드 넣는 방법

  1. 태그 바로넣기
  2. head 태그 안에 넣기
  3. 파일 넣기
<!DOCTYPE html>
<html>
<head>
<title>자바스크립트 코드 넣는 방법</title>
// 3. 파일 넣기
	<script type="text/javascript" src="script.js"></script>

// 2. head 태그 안에 넣기
	<script type="text/javascript">
    		alert("head 안 메시지");
	</script>
</head>
<body>
// 1. 태그 바로 넣기
	<input type = "button" value = "버튼" onclick="alert('태그 안 메시지')">

</body>
</html>

 

  1. 변수
  2. 함수
  3. 객체(웹브라우저 제어)

'배운 것 기록 > web' 카테고리의 다른 글

[html] 특수 문자 태그, 목록  (0) 2022.05.02
[js] 내장객체 window, location, history  (0) 2022.05.02
[js] 변수, 함수  (0) 2022.04.29
jsp  (0) 2022.04.27
[html] 웹, html  (0) 2022.04.25
댓글
최근에 올라온 글
«   2024/12   »
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 31
글 보관함