我正在尝试从将成为网站标题的字符串中包装最后三个单词。我正在尝试使用 split 方法和 pop 但没有得到它。
var text = "This is an example text sentence"
我想像这样查看 html 这是一个示例文本句子
var split = text.split(" ");
var last = split.pop() // but it gives me only the last word
text.join(" ") + (text.length > 0 ?
' <span class="text-stroke">' + last + "</span>" : last)
慕姐4208626
互换的青春
相关分类