我正在尝试延迟链接属性,以便在内容淡出后应用它。但是添加超时功能不起作用。有任何想法吗?
$(function () {
$(".layout a").click(function () {
setTimeout(function () { $("link:first").attr("href", $(this).attr('rel')); }, 500)
$.cookie("Layout", $(this).attr('name'), { expires: 365, path: '/media', secure: true });
$('.content, .searchresults').fadeOut(500).delay(500).fadeIn(275);
window.scrollTo(0, 0); // Scroll Window back to Top
return false;
});
});