我有几个这样的标签:

<a class="classCover" href="#">1 Comment</a>


我想颠倒单词的顺序:

Comments (1)


我的功能是这样,但不起作用:

$('.classCover').each(function(){
    $(this).text().split(' ').reverse().join(' ');
});


拜托,有什么主意吗?

最佳答案

您几乎已经拥有了,除了您不对结果做任何事情

$('.classCover').each(function(){
    $(this).text($(this).text().split(' ').reverse().join(' '));
});

关于javascript - 动态句子中的逆序词,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31648022/

10-11 23:54