在最后一个链接jQuery之后包装span中的第一个单词

时间:2013-01-11 05:16:06

标签: jquery

试图找到一种方法来包装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>

这将在更深入的解决方案中使用

小提琴:http://jsfiddle.net/evanmoore/awwTA/1/

2 个答案:

答案 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;
      })
  }
})

http://jsfiddle.net/XKjtq/

答案 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>