본문 바로가기

JS/Ajax

Ajax로 로그인 성공하면 폰에 있는 html 파일 켜기

출처 http://shovelman.tistory.com/829


아래 코드와 출처에 있는 설명을 응용해서 ... 해야함.


memberIdCheck.click(function(){

        console.log(memberId.val());

        $.ajax({

            type: 'post',

            dataType: 'json', //서로 다른 언어간에 데이터 전송을 위한 표준

            url: '../member/memberIdCheck.php',

            data: {memberId: memberId.val()}, //memberId.val() 멤버 input에 적힌 ID


            success: function (json) {

                if(json.res == 'good') {

                    console.log(json.res);

                    memberIdComment.text('사용가능한 아이디 입니다.');

                    idCheck.val('1');

                }else{

                    memberIdComment.text('다른 아이디를 입력해 주세요.');

                    memberId.focus();

                }

            },


            error: function(){

              console.log('failed');


            }

        })

    });

'JS > Ajax' 카테고리의 다른 글

ajax error jqXHR.status===0  (0) 2018.09.09
js, html  (0) 2018.03.01
Ajax 간략  (0) 2018.02.13