重複の可能性:
条件がfalseの場合、Jqueryはデフォルトを防止します
私はこのコードを持っています、それはうまく動いていますが、私はそれを動的にしたいです。
$(".nav a").click(function () {
var getid = $(this).attr('id');
$("#background-wrapper").fadeOut("slow");
$("#page_box").fadeOut("slow");
$("header").fadeOut("slow");
$("footer").fadeOut("slow", function () {
window.location = getid+".php";
});
});
hrefを使用して指示する前に、最初にフェードアウトを実行したいと思います。
私が欲しいのはこれが最初です
$(".nav a").click(function () {
var getid = $(this).attr('id');
$("#background-wrapper").fadeOut("slow");
$("#page_box").fadeOut("slow");
$("header").fadeOut("slow");
$("footer").fadeOut("slow");
});
その後、これをトリガーします
.nav a = href = "link"