제목 : 활용예제 : 이용약관에 동의하기 : Agreement.htm
    
    
        
            
                | 글번호: |  | 228 | 
            
                | 작성자: |  | 레드플러스 | 
            
                | 작성일: |  | 2007/10/18 오후 8:15:00 | 
            
            
                | 조회수: |  | 5928 | 
            
        
     
 
    
	
	
    
	<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>이용약관</title>
    <script language="javascript" type="text/javascript">
    function CheckForm()
    {
        var ok = document.getElementById("OK");
        if (ok.checked == true)
        {
            location.href = "Register.htm"; // 이동
        }
        else
        {
            window.alert("약관에 동의하셔야합니다.");
            return false;
        }     
    }
    </script>
</head>
<body>
<textarea style="width: 400px;height: 61px">
우리 쇼핑몰은 어쩌구 저쩌구...
약관 내용 나열...
</textarea>
<form id="MyForm">
<input type="checkbox" id="OK" /> 약관에 동의하시겠습니까?
<input type="button" value="회원가입" onclick="CheckForm();" />
</form>
</body>
</html>