gpt4 book ai didi

Jquery,循环其他点击而不是第一次点击

转载 作者:太空宇宙 更新时间:2023-11-04 04:00:58 25 4
gpt4 key购买 nike

所以我有一些代码,其目的是使用 .load() 加载一个类似 facebook 的盒子。

代码的工作原理是:Onclick 检查是否隐藏。如果没有,则 .load 然后 .toggleOnclick 再次检查 div 是否可见,如果可见,则 .toggle 隐藏。

现在 div 已隐藏,它将再次运行代码的第一部分。我想阻止这种情况,并在第一次点击后运行 else 函数。

这怎么可能通过开关实现?

$(".facebook-f").click(function () {
"use strict";
if ($('.facebook-content').css('display') == 'none') {
$('.fb-loader-content').addClass('loader');
$('.facebook-content').load("http://www.google.com", function () {
console.log('loader will be removed');
$('.fb-loader-content').removeClass('loader');
});
$('.facebook-content').toggle();
} else {
$('.facebook-content').toggle();
}

});

Here is a link to the jsfiddle .

最佳答案

使用计数器。因此在第一次点击后,它会将计数器更改为 2,从而导致 else 条件从现在开始运行。

$(".facebook-f").click(function () {
"use strict";
var counter = 1; // added this
if ($('.facebook-content').css('display') == 'none' && counter === 1) { // added another condition here
$('.fb-loader-content').addClass('loader');
$('.facebook-content').load("http://www.google.com", function () {
console.log('loader will be removed');
$('.fb-loader-content').removeClass('loader');
counter += 1; // update the counter so it changes to 2 causing the else to run the next times
});
$('.facebook-content').toggle();
} else {
$('.facebook-content').toggle();
}
});

关于Jquery,循环其他点击而不是第一次点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22073748/

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