Reverse order words in a dynamic sentence

后端 未结 2 1299
温柔的废话
温柔的废话 2021-01-29 03:40

I have several tags like this:

1 Comment

I would like to do this reversing the order of the

2条回答
  •  無奈伤痛
    2021-01-29 04:18

    You almost had it, except you're not doing anything with the result

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

提交回复
热议问题