티스토리 뷰
자바스크립트 코드 넣는 방법
- 태그 바로넣기
- head 태그 안에 넣기
- 파일 넣기
<!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>
- 변수
- 함수
- 객체(웹브라우저 제어)
'배운 것 기록 > 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 |
댓글