1. 자바스크립트 삽입 방법
Programming/Javascript |
2012. 12. 13. 22:24
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
<style type = "text/css">
body{
color:blue;
}
</style>
<!-- 1. script block을 사용해서 자바스크립트 작성 -->
<script language="Javascript" type = "text/javascript">
//head에 있으므로 html 생성전에 수행
//document객체의 write메서드로 화면에 출력
//javascript 대,소문자구문
document.write("안녕하세요.<br />");
document.write("반갑습니다.<br />");
window.alert("또 만나요.\n 낼봐요.~");
</script>
</head>
<body>
</body>
</html>
'Programming > Javascript' 카테고리의 다른 글
자바스크립트의 기본 출력문 (0) | 2012.12.15 |
---|---|
객체, 속성, 메서드, 이벤트 용어 설명 (0) | 2012.12.14 |
javascript 작성시 주의점 (0) | 2012.12.13 |
3.자바스크립트삽입방법 (0) | 2012.12.13 |
2. 자바스크립트 삽입방법 (0) | 2012.12.13 |