gpt4 book ai didi

javascript - 使用 jQuery 隐藏/删除字符串

转载 作者:行者123 更新时间:2023-12-03 06:46:44 26 4
gpt4 key购买 nike

所以我有这个:

jQuery('.amount').each(function() {
console.log(jQuery(this).text());
var text = jQuery(this).text().replace("Gratuit !", " ");
jQuery(this).text(text);
});

它可以与另一个元素配合使用,但不适用于这个元素。控制台返回其他字符串的正确数量,但似乎无法获取“Gratuit !”的数量位于模态中的字符串,其他字符串也是如此。

http://www.taomedecine.com/#seminaires
这是“计时针灸”产品的快速 View 。

最佳答案

这是因为您在页面上存在元素之前调用该函数。您的模式可能异步加载其内容(包含.amount元素)。

如果您在加载链接到的页面时查看控制台,您会发现它没有 console.log() 中的任何内容:

console.log(jQuery(this).text()); 

这为您提供了 .each() 循环 0 项的线索。

因此,您应该在模型内容加载后调用您提到的函数,假设它提供了一个回调函数

关于javascript - 使用 jQuery 隐藏/删除字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37703710/

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