gpt4 book ai didi

javascript - jQuery 点击被触发两次

转载 作者:行者123 更新时间:2023-11-30 06:06:42 26 4
gpt4 key购买 nike

代码:

$(".box-collapse").live("click",function(){
if(updating()) return false;
var b = $(this).parent().parent();
b.find(".album-div").stop(true,false).slideToggle();
$.ajax({
url: addNonce($(this).attr("href")),
success:function(data){
c = b.attr("id");
var resp = $('<div />').html(data);
var col = $("#"+c+" .box-collapse");
var ncol = resp.find("#"+c+" .box-collapse");
col.html(ncol.html());
col.attr('href',ncol.attr('href'));
resp.remove();
clearUpdate(data);
wait = false;
}
});
return false;
});

此点击被触发了两次。

发生了什么:

  • 点击折叠并发送一个挽救崩溃的回应。
  • 再次单击以展开并发送一个请求保存展开。
  • 再次点击收起即可触发两次(保持展开状态,但保存折叠状态)。
  • 再次点击它会触发 4 次。

它只会在第二次点击后才开始多次发射。这让我很困惑。

如果我删除数据服务,它不会触发两次。我在服务上做错了什么? (即我只在 success 中留下 wait = false)

我在这个调用中使用的其他函数:

function updating(){
if(!wait) {
$("#loading").html('Updating...');
wait = true;
return false;
}
else {
$("#loading").html('Slow down...');
return true;
}
}

function clearUpdate(data){
var resp = $('<div />').html(data);
//alert(resp.find("#nonce").val() + " "+$("#nonce").val());
$("#loading").html(resp.find("#loading").html());
if(typeof(resp.find("#nonce").val()) == 'undefined'){
alert(data);
$("#loading").html("Fatal error. Your session could have ended. <a href='javascript:location.reload()'>Refresh</a>");
resp.remove();
return false;
}
else if(resp.find("#errorcode_").val() == "refresh"){
location.reload();
}
resp.find(".image-box").each(function(){
$("#"+$(this).attr("id")).find(".image-count").html($(this).find(".image-count").html());
});
$("#nonce").val(resp.find("#nonce").val());
wait = false;
resp.remove();
}

wait 标志可防止在最后一个请求得到服务之前发送请求。我这样做是因为我跟踪一个随机数,并且我必须在每次请求后获得一个新的随机数。

同样,如果我删除数据服务,它工作正常。但我需要为数据提供服务以获取新的随机数。

另外,我没有看到它在任何地方崩溃。任何帮助都会很棒。如果需要,我会发布任何其他功能。我的完整脚本非常大。

这是 .box-collapse 父级的 HTML:

    <div class='box image-box album-marker-visible image-box-w-20 image-box-list-0' id='portrait'>
<h2 class='box-header image-box-header'>
<input type='checkbox' name='albums[portrait]'>
<span class='image-box-header-move'>
<span class='image-album-number'>1</span>. Portrait <input type='hidden' class='image-album-anchor' value='portrait'>
<input type='hidden' class='image-album-portfolio' value='1'>
<span class='image-count'>(20)</span>
<span class='box-mover'>Move to: <a href='images?n=bridals,weddings,engagement,portrait&port=2&nonce=I8FX2BH841' title='Move to Wedding Portfolio'>Wedding Portfolio</a>&nbsp;Move: <a href='images?n=story,portrait,capture,press,concerts&port=1&nonce=I8FX2BH841'>down</a></span></span>
<span class='album-marker'>&nbsp;|&nbsp;<a href='images?ia=3&action=hide&nonce=I8FX2BH841' title='Mark album as hide' class='album-mark-hide album-mark'>hide</a></span>
<a class='box-mover-show box-collapse' href='images?expand=portrait&nonce=I8FX2BH841' title='Expand Portrait'>expand</a></h2>

.box 有多个实例,我没有在 h2 标签后显示内容(这就是为什么我的 div 不是t 关闭)。

根据要求,这是应该发生的事情的分步过程:

  • 我在 .box-collapse 实例上单击折叠。它发送它的 href
  • jQuery 切换其幻灯片。
  • 在回电时,我从刚刚单击的链接中获得了新的 href。它应该将查询字符串从 expand=an_album 更改为 collapse=an_album 或反之亦然。我还将状态从“展开”更改为“折叠”。我正在根据我刚刚单击的包含 .box 的 ID 搜索响应。我得到了正确的响应(折叠将变为展开),但是 jQuery slideToggles 两次。
  • clearUpdate() 中,我根据收到的数据更新我的随机数。如果我没有收到随机数,我就会死。我还更新了每个 .box 的图像数。

我在成功时设置了一个警报,在第一次点击时,我得到了一个警报。再次点击,我得到一个警报。单击三次 次,我收到两次 警报。第四次,4个警报。

我还在我的 clearUpdate() 中完成了 alert($(".box-collapse").length); 并且大小没有改变。

错误在于成功函数和/或clearUpdate。由于我收到的 HTML 与我已经拥有的完全相同(减去上面的更改),我是否有可能重新解析 javascript 并重新绑定(bind)点击?但这似乎不可行,因为我应该在第一次点击后多次射击。更新我在 $(document).ready() 中添加了一个警报,每次收到响应时都会收到警报。所以它正在重新解析 javascript 并重新绑定(bind)点击。我的直接解决方法是将其更改为:$(".box-collapse").die("click").live("click",function()) 但我会添加一个查询禁用 javascript header 。

感谢您的帮助!

最佳答案

如果数据包含 .box-collapse 类,这很可能会创建第二次点击事件

var resp = $('<div />').html(data);

你真的需要类选择器吗?标识符应该是唯一的这使得 b.html() == $("#"+c+".box-collapse").html() 和 b == col[0]

var col = $("#"+c+" .box-collapse");

这令人担忧。这意味着在 resp 中有一个与 b 中具有相同 id 的元素。很可能是从实时切换到点击时点击事件的原因发生两次。

var ncol = resp.find("#"+c+".box-collapse");

对.box-collapse 的内容或数据知之甚少,无法理解

col.html(ncol.html());
col.attr('href',ncol.attr('href'));

现在我想我终于明白了。

将数据更改为包含 JSON 对象或更简单的 HTML 结构,它应该像这样工作。

很好的例子

 data == { "innerText":"expand", "url":"images?expand=portrait&nonce=I8FX2BH841" }

col.html(data.innerText);
col.attr('href', data.url);

坏例子

服务器响应:

data == <span class="innerText">expand</span><span class="url">images?expand=portrait&nonce=I8FX2BH841</span>

var div = $("<div />").html(data);
col.html(div.find(".innerText").html());
col.attr(div.find(".url").html());

并调整clearUpdate函数

关于javascript - jQuery 点击被触发两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4006428/

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