프로젝트/프리랜서 로그

간단한 홈페이지 수정/체크박스 체크여부, 팝업창 띄우기

samsaraA 2017. 10. 30. 15:42

플랫폼 : 그누보드

작업내용 : 개인정보 수집 동의 처리 / pc와 모바일에서 같은 화면이 보이게끔 수정

작업기간 : 17.10.30

소요시간 : 20분

구현 : 체크박스 삽입/체크 되었는지 확인 후 submit

1
2
3
4
5
6
7
8
9
10
11
12
function checkForm(){
    f=document.writeForm;
    var chk1=document.writeForm.agree.checked;
    
    if(!chk1){
        alert("개인 정보 수집정책에 동의 해주세요");
        return;
    }
    f.action="_.php";
    f.submit();
 
}
cs


팝업띄우기
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<td><a href="javascript:popupOpen();">자세히보기</a></td>
 
 
<script type="text/javascript">
    function popupOpen(){
 
        var popUrl = "detail.html";    
 
        var popOption = "width=370, height=360, resizable=no, scrollbars=no, status=no;";   
 
        window.open(popUrl,"",popOption);
 
    }
</script>
cs




꼬여있는 링크 주석처리 후 모바일버전 제작