当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Processing XML.removeChild()用法及代码示例


Processing, 类XML中的removeChild()用法介绍。

用法

  • .removeChild(kid)

返回

  • void

说明

移除指定的元素。首先使用getChild() 获取对所需元素的引用。然后将该引用传递给removeChild() 以将其删除。

例子

// The following short XML file called "mammals.xml" is parsed 
// in the code below. It must be in the project's "data" folder.
//
// <?xml version="1.0"?>
// <mammals>
//   <animal id="0" species="Capra hircus">Goat</animal>
//   <animal id="1" species="Panthera pardus">Leopard</animal>
//   <animal id="2" species="Equus zebra">Zebra</animal>
// </mammals>

XML xml;

void setup() {
  xml = loadXML("mammals.xml");
  XML firstChild = xml.getChild("animal");
  xml.removeChild(firstChild);
  println(xml);
}

// Sketch prints:
// <mammals>
//   
//   <animal id="1" species="Panthera pardus">Leopard</animal>
//   <animal id="2" species="Equus zebra">Zebra</animal>
// </mammals>

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 XML.removeChild()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。