회원가입시 휴대폰번호 중복 체크를 위한 코드 추가

This commit is contained in:
chicpro
2013-02-28 13:44:15 +09:00
parent 1edea853ec
commit 177ceb81bc
5 changed files with 90 additions and 29 deletions

View File

@ -51,4 +51,23 @@ var reg_mb_email_check = function() {
}
});
return result;
}
var reg_mb_hp_check = function() {
var result = "";
$.ajax({
type: "POST",
url: g4_bbs_url+"/ajax.mb_hp.php",
data: {
"reg_mb_hp": $("#reg_mb_hp").val(),
"reg_mb_id": encodeURIComponent($("#reg_mb_id").val())
},
cache: false,
async: false,
success: function(data) {
result = data;
}
});
return result;
}