我如何添加到一个按钮,所以在我按下它之后。它会在 5 秒后将我重定向到一边?我尝试了很多不同的东西,但它对我不起作用......它需要是一个 onClick 函数(javascript)。
HTML:
<html>
<head>
<style type="text/css">
#save_first { display: none; }
#save_second { display: none; }
#save_third { display: none; }
</style>
<script type="text/javascript" src="http://mctheblitz.com/servers/js/jquery.js"></script>
<script type="text/javascript" src="js/custom.js"></script>
</head>
<body>
<input type="button" value="Save" onClick="save();"/>
<div id="save_first"></div><div id="save_second"></div>
<?php
</body>
</html>
Javascipt:
function save() {
$('#save_first').html('Validating...');
$('#save_first').fadeIn(1);
$('#save_first').delay(2000);
$('#save_first').fadeOut(300);
$('#save_second').html('Successfully log in!');
$('#save_second').hide();
$('#save_second').delay(2350);
$('#save_second').fadeIn(0);
}
求救!