gpt4 book ai didi

javascript - 我想替换 H​​TML 标签的内部文本

转载 作者:行者123 更新时间:2023-12-02 17:59:18 27 4
gpt4 key购买 nike

我在单个帖子的左侧有一个固定的社交栏,我想更改社交按钮“fb Share”的文本,我尝试了很多方法但没有运气。这是link用于检查问题。我尝试了以下代码:

$('.pw-button-facebook').contents().find('span.pw-button-type-looknative__txt').text('新文本');

$('span.pw-button-type-looknative__txt:contains("Share")').html(function(i,h){
return h.replace('Share', 'New text');
});

$('.pw-button-facebook').contents().find('span.pw-button-type-looknative__txt').html('新文本');

$('.pw-button-facebook span.pw-button-type-looknative__txt').contents().filter(function() {
return this.nodeType == 3
}).each(function() {
this.data = this.data.replace(/Share/, 'New text');
});

如果可以的话请帮助我。谢谢。

最佳答案

$('.pw-button.pw-button-facebook').find('.pw-button-type-looknative__txt').text('Test');

尝试使用 Facebook 按钮。

关于javascript - 我想替换 H​​TML 标签的内部文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20697878/

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