in a div, have elements (not necessarily 2nd generation) with attribute move_id
.
First, would like most direct way of fetching first and last elements of set
tried getting first and last via:
var first = div.querySelector('[move_id]:first');
var last = div.querySelector('[move_id]:last');
this bombs because :first and :last were wishful thinking on my part (?)
cannot use the Array methods of querySelectorAll
since NodeList
is not an Array:
var first = (div.querySelectorAll('[move_id]'))[0];
var last = (div.querySelectorAll('[move_id'])).pop();
this bombs because NodeList
does not have method pop()
(yes, one could could use Array methods on top of the NodeList:
var first = div.querySelector('[move_id]');
var last = Array.prototype.pop.call(div.querySelectorAll('[move_id']));
this works, and is what I'm using now, but thinking there has to be something more direct that I'm simply missing)
Second, need to verify that the elements are listed by pre-oder depth-first traversal as per http://en.wikipedia.org/wiki/Tree_traversal
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…