블로그 이미지
Magic_kit
study 관련자료를 한곳으로 자기 개발 목적으로 재태크 재무 관리 목적으로 일상생활의 팁을 공유 하기 위하여 블로그를 개설 하였습니다.

calendar

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

Category

Recent Post

Recent Comment

Archive

2009. 7. 30. 13:53 .Net Project/JavaScript
반응형


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"         
                                "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
//생략가능 mata
<meta http-equiv="Content-Type" content="text/htm; charset=utf-8 
    <title>02.자바스크립트 삽입</title>

<style type="text/css">
body //배경색 지정(노랑색으로 설정)
{
    background-color:Yellow;
    color:Blue;
}
</style>
<!--스크립트 영역은 헤더 태그에 위치하도록 한다 -->

//language 생략가능 하지만 Type는 꼭 선언 해주어야 합니다.

<script language="javascript" type="text/javascript">

// 도큐먼트 객체(개체) write Method;함수(메서드;함수)로 화면 출력

    document.write("안녕하세요<br /> 반갑습니다. <br />");
    document.write("만나서<br /> 반갑습니다. <br />");
    //윈도우 객체의 alert() 함수 호출로 경고대화상자(메시지박스)출력
    window.alert("삽입에 성공하셨군요? \n 다음 내용도 꼭 성공하세요..");
</script>
</head>
<body>
</body></html>


Window.alert 윈도우 경고 MessageBox 이벤트 핸들러 사용하여 이벤트 처리



반응형
posted by Magic_kit