试图找到一种方法来包装span标记中的第一个单词。要换行的文本总是跟踪最后一个链接
<div class="style1">
<a class="style2" href="http://www.example.com">a</a>
<a class="style3" href="http://www.example.com">b</a>
test test test test test test test
</div>
我希望第一个test
包含在<span>test</span>
这将在更深入的解决方案中使用
答案 0 :(得分:2)
$('.pag').contents().filter(function () {
// IE doesn't support `textContent` proerty, you can replace it with $(this).text()
if (this.nodeType === 3 && $.trim(this.textContent) !== '') {
$(this).wrap('<div/>').parent().html(function (i, v) {
return v.replace(/(\w+\s)/, '<span>$1</span>')
}).replaceWith(function() {
return this.innerHTML;
})
}
})
答案 1 :(得分:0)
尝试这段代码:
<script>
data = $(".style1").html().trim().split("\n");
str = data[data.length - 1];
data.splice(data.length - 1, 1);
str = str.trim().split(" ");
str[0] = "<span>" + str[0] + "</span>";
data[data.length] = str.join(" ");
$(".style1").html(data.join("\n"));
</script>