在Tritium中,如何根据现有元素的内容插入元素?

时间:2013-06-19 19:09:38

标签: html sdk moovweb

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

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

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

2 个答案:

答案 0 :(得分: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)
      }
    }
  }
}

答案 1 :(得分: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匹配找到的字母的小写和大写版本。