我想知道您是否可以听到 a 的元素何时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 背景。这是一个有效的假设吗?