搜索文档
__SwapElement
交换两个 Element 的位置。
__SwapElement(childA: Element, childB: Element) : void;
无返回值。
前端框架可以按下如下的方法进行替换操作。
// main-thread.js let childA = __CreateElement('view', 0, {}); let childB = __CreateElement('view', 0, {}); let parent = __CreateElement('view', 0, {}); __AppendElement(parent, childA); __AppendElement(parent, childB); __SwapElement(childA, childB);