1

我想插入新元素,但它必须在特定元素之间。区分这些元素的唯一方法是通过它们的内容。

我想插入将按字母顺序拆分此列表的标题元素。我怎样才能做到这一点?

<p>Aardvark</p>
<p>Alligator</p>
<p>Bear</p>
<p>Beaver</p>
<p>Cat</p>
<p>Cow</p>
...
4

2 回答 2

3

好吧,让我们立即完成一些严肃的代码。

我要试着让这个动态!

$letter = ''
$("//p[not(contains(@class,'starts-with'))][1]") {
  # get the first p that doesn't have the class
  $add_header = "false"
  text() {
    capture(/\A(\w)/) {
      # get the first letter and set it to a variable 
      match($letter) {
        with($1) {
          #do nothing
        }
        else() {
          $letter = $1
          $add_header = "true"
        }
      }
    }
  }
  match($add_header) {
    with(/true/) {
      insert_before("h1", "Starts With: "+$letter)
      $("self::*|following-sibling::p[contains(text(), '"+$letter+"')]") {
        add_class("starts-with-" + $letter)
      }
    }
  }
}
于 2013-06-19T21:02:15.200 回答
0

试一试。它适用于任何列表,即使元素没有按首字母分组。

$add_header = "true"
text() {
  replace(/^(.)/) {
    $first_letter = $1
  }
}

# If the header section already exists, move this element inside
move_to("preceding-sibling::div[@class='starts-with-"+$first_letter+"']") {
  $add_header = "false" 
}

# If the header section doesn't exist, wrap the element 
match($add_header, /true/) {
  wrap("div") {
    add_class("starts-with-" + $1)
  }
}

将它包装到一个函数中是非常简单的。在此之后,下一个要编写的逻辑函数将是按字母顺序排列,并使用 $first_letter 来匹配找到的字母的小写和大写版本。

于 2013-06-19T22:43:19.357 回答