$('.search-input').focus(function () {
$(this).val('');
});
$('.search-input').blur(function () {
if ($(this).val() == '') {
$(this).val('enter the place');
}
});
$('#edit-name').keyup(function () {
if ($(this).val() != '') {
$('.username .error-message').remove();
} else {
$('#edit-name').after('<span style="color:red;" class="error-message" >enter the name!</span>');
}
});
$('#edit-name').blur(function () {
if ($(this).val() == '') {
$('.username .error-message').remove();
$('#edit-name').after('<span style="color:red;" class="error-message" >enter the name!</span>');
}
});
$('#edit-pass').keyup(function () {
if ($(this).val() != '') {
$('.password .error-message').remove();
} else {
$('#edit-pass').after('<span style="color:red;" class="error-message"> enter the password!</span>');
}
});
$('#edit-pass').blur(function () {
if ($(this).val() == '') {
$('.password .error-message').remove();
$('#edit-pass').after('<span style="color:red;" class="error-message" >enter the password!</span>');
}
});
コードをマージまたは美化する方法はありますか?ありがとうございます。