<!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>
     <title>기본출력문</title>
</head>

<body>

<script type="text/javascript">
    //[1]
    document.write("문서 영역에 결과 값 출력<br />");
    window.document.write(
    "<span style='color:red;'>window</span> 객체는 생략 가능</br />"); // 큰따옴표("") 안에는 작은따옴표('')로 묶어야 함.
    //[2]
    window.alert(" \"메시지박스\" 결과 값 출력"); // 큰따옴표("")를 메시지박스 안에 표시하고자 할때는 "앞에 \표기하면 됨.
    alert("역시 window 객체(개체)는 생략 가능");
</script>

</body>
</html>



< 실행결과 >






--> 첫번째 메시지박스 '확인'버튼 누른 후



Posted by holland14
: