Google Dart:更改IListElement的活动

时间:2012-11-20 13:16:48

标签: dom dart

我想知道你是否可以听取UListElement的元素何时发生变化(即添加或删除LIElement)?

UListElement toDoList = query('#to-do-list');
LIElement newToDo = new LIElement();
newToDo.text = "New Task";
toDoList.elements.add(newToDo);
// how do I execute some code once the newToDo has been added to the toDoList?

我假设elements.add()是异步的,因为我来自ActionScript背景。这是一个有效的假设吗?

3 个答案:

答案 0 :(得分:3)

更高级别的框架为您提供了事件,但在HTML5 API级别,您必须使用MutationObserver。

这是一个可以在任何DOM Element对象上设置变异观察器的示例。然后,处理程序可以根据需要处理突变事件。

void setMutationObserver(Element element){
  new MutationObserver(mutationHandler)
    .observe(element, subtree: true, childList: true, attributes: false);
}

void mutationHandler(List<MutationRecord> mutations,
                    MutationObserver observer){
  for (final MutationRecord r in mutations){
    r.addedNodes.forEach((node){
      // do stuff here
    });

    r.removedNodes.forEach((node){
      // or here
    });
  }
}

答案 1 :(得分:0)

element.elements.add(otherElement)是同步的,相当于Javascript中的element.appendChild(otherElement)(即DOM Level 2 Core : appendChild)。

答案 2 :(得分:0)