我有几个复合节点(A包含B,B包含C),我想选择叶节点(C)。怎么做?
谢谢!
答案 0 :(得分:0)
您选择的含义不明确,但我猜你的意思是如何查询图表:
cy.nodes().not(':parent'); // all nodes who are not themselves a parent
// or //
cy.nodes(':child').not(':parent'); // all descendant nodes who are not themselves a parent