var pwdFlag = 0;
$(function(){
$('#check_regist_email_password').keyup(function(){
if($('#regist_email_password').val() != $('#check_regist_email_password').val()){
$('#check_regist_email_password').next().html('<span style="color:red;">암호가 틀립니다</span>');
pwdFlag = 0;
return false;
} else {
$('#check_regist_email_password').next().html('<span style="color:red;">암호가 맞습니다</span>');
pwdFlag = 1;
return true;
}
});
})
'Programming > jQuery' 카테고리의 다른 글
[ajax]multipart form 전송 (0) | 2016.10.13 |
---|---|
JQuery.each() (0) | 2015.07.15 |
[jQuery] function 정의 (0) | 2015.07.02 |