gpt4 book ai didi

jquery - 当页面加载和单击链接时触发 jQuery 函数?

转载 作者:行者123 更新时间:2023-12-01 05:04:23 24 4
gpt4 key购买 nike

我正在使用这个功能:

$(document).ready(function() {

$('.gdthumbtext')
.contents()
.filter( function(){
return this.nodeType == 3;
}).each(function(){
this.nodeValue= this.nodeValue.replace(/\+/g,'');
});

});

删除 .gdthumbtext div 内数字前的加号。现在的问题是,每次点击链接时,ajax 都会改变数字与类 .gdt-star rating.

我想当单击链接时我必须再次调用(或调用)该函数。

也许我需要这样的东西:当页面加载时调用该函数,当单击.gdt-star rating类的链接时。

关于如何做到这一点有什么建议吗?

最佳答案

您可以将代码移动到它自己的函数中,调用该函数 onload,然后在每次单击链接时继续调用该函数。像这样:

$(document).ready(function() {
// Call cleanup onload
stripPlusSigns();

$('a.gdt-starrating').click(function() {
// Do stuff here...
// ...

// Strip plus signs again
stripPlusSigns();
});
});

function stripPlusSigns()
{
$('.gdthumbtext')
.contents()
.filter( function(){
return this.nodeType == 3;
}).each(function(){
this.nodeValue= this.nodeValue.replace(/\+/g,'');
});

return true;
}

关于jquery - 当页面加载和单击链接时触发 jQuery 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7156457/

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