minsung

final

......@@ -49,54 +49,3 @@ function checkPasswordMatch() {
else
$("#message").html("일치.");
}
$(document).ready(function () {
$('#eValidation').keyup(function () {
var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
if (re.test($(this).val())) {
$(this).css("borderColor", "green");
} else {
$(this).css("borderColor", "red");
}
});
});
$(document).ready(function () {
$('#fValidation, #sValidation').on('keyup', function () {
if ($('#fValidation').val() == $('#sValidation').val()) {
$('#message').html('일치').css('color', 'green');
} else
$('#message').html('비밀번호가 일치 하지않습니다.').css('color', 'red');
});
});
/*
$(document).ready(function () {
$('#eValidation').keyup(function () {
var re = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
if (re.test($(this).val())) {
$(this).css("borderColor", "green");
} else {
$(this).css("borderColor", "red");
}
});
});
$(document).ready(function () {
$('#fpassword, #spassword').on('keyup', function () {
if ($('#fpassword').val() == $('#spassword').val()) {
$('#message').html('일치').css('color', 'green');
} else
$('#message').html('비밀번호가 일치하지 않습니다').css('color', 'red');
});
});
*/
......
......@@ -23,7 +23,7 @@ $('#eValidation').keyup(function () {
} else {
$(this).css("borderColor", "red");
ref={eValidation.email}
}
});
});
......@@ -35,7 +35,7 @@ $('#fValidation, #sValidation').on('keyup', function () {
} else
$('#message').html('비밀번호가 일치 하지않습니다.').css('color', 'red');
});
});
......