ボタンをクリックすると、最初にそれが表示.fadeIn(0); .dealy(2000); .fadeOut(600); and say "Validating..."
さ"Success fully log in"
れ、index.php にリダイレクトされます。
私はこれを試しましたが、うまくいきませんでした:
function save() {
$('#save_first').html('Validating...');
$('#save_first').fadeIn(1);
$('#save_first').delay(2000);
$('#save_first').fadeOut(600);
$('#save_second').html('Success fully log in!');
$('#save_second').delay(2601);
}
HTML
header('Location: index.php');
exit();