gpt4 book ai didi

jquery - 从 jquery 片段中删除函数有困难

转载 作者:行者123 更新时间:2023-11-28 13:32:13 25 4
gpt4 key购买 nike

我试图摆脱在脚本忙于 ajax 新内容时附加加载 gif 的函数,但我一直在破坏脚本,所以我将其发布在这里希望有人可以编辑它对我来说正确。 (我想摆脱与#load 相关的所有内容,并保持其他所有内容完好无损。)

    $('#header_nav_content_container a, a.scroll_to_top, a.clear_banner, a.desire').not('.exception').click(function(){ 

var toLoad = $(this).attr('href')+' #content';
$('#content').hide(1555,'easeInOutQuint',loadContent);
$('#load').remove();
$('body').append('<span id="load">LOADING...</span>');
$('#load').fadeIn(888);
window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-0);
function loadContent() {
$('#content').load(toLoad,'',showNewContent);
}
function showNewContent() {
$('#content').show(777,'',hideLoader);
}
function hideLoader() {
$('#load').fadeOut(888);
}
return false;

});

感谢您的帮助。

最佳答案

好吧,我明白了。我将其张贴在这里,因为我知道很多人都在使用相同的脚本(来自 nettuts 的“加载内容和动画内容”),所以有人可能想知道如何摆脱脚本的加载部分。

    $('#header_nav_content_container a, a.scroll_to_top, a.clear_banner, a.desire').not('.exception').click(function(){ 

var toLoad = $(this).attr('href')+' #content';
$('#content').hide(1555,'easeInOutQuint',loadContent);
window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-0);
function loadContent() {
$('#content').load(toLoad,'',showNewContent);
}
function showNewContent() {
$('#content').show(777,''); //problem: I needed to remove "hideLoader"
}
return false;

});

谢谢大家

关于jquery - 从 jquery 片段中删除函数有困难,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13427781/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com