<script type="text/javascript">
$(document).ready(function() {
$("body").css("display", "none");
$("body").fadeIn("slow");
$("a.link").click(function(event){
event.preventDefault();
linkLocation = this.href;
$("body").fadeOut("slow", redirectPage);
});
function redirectPage() {
window.location = linkLocation;
}
});
</script>
使用“onclick”时,“fadeOut”不起作用。不使用“href”可以实现吗?
<a class="link" onclick="window.location='index.php'">index.php</a>