gpt4 book ai didi

php - JQUERY AJAX 为每个循环自定义属性

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

这个问题与我昨天问的另一个问题有关,其链接是: Parse HTML in jquery through ajax into elements and replace each corresponding on page

基本上我想用ajax调用一个php页面,并将响应中的元素替换为页面上相应的元素。我在答案中得到了以下函数:

 $(data ).filter('.maindiv').each(function (index) 
/* "this" is the current div in response*/
$('#'+this.id).replaceWith(this);
});

当我想要替换的 div 具有常规 id= 时,上述函数效果很好,但如果使用像 gid= 这样的自定义属性,例如它将不起作用。我该如何解决这个问题?

谢谢

最佳答案

使用 attr 作为自定义属性,而不是使用 this.id,您可以使用 $(this).attr("YourAttr");

$(data ).filter('.maindiv').each(function (index) 
/* "this" is the current div in response*/
$('#'+$(this).attr('gid')).replaceWith(this);
});

关于php - JQUERY AJAX 为每个循环自定义属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14773068/

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