admin管理员组文章数量:1405306
Let's say I have a Nodelist:
list = document.querySelectorAll('div');
and I want to shuffle it. How would I do this?
The only answer I came across, here suggests turning the nodelist into an array
using
var arr = [].concat(x);
Similarly, the MDN suggests the following (to turn a NodeList into an array
):
var turnObjToArray = function(obj) {
return [].map.call(obj, function(element) {
return element;
})
};
My question is, is there no way to do this without turning a NodeList into an array?
And, which of the above two methods is better?
And, once you have turned a NodeList into an array, does anything change when you operate on certain members of the array? (I.e. does deleting one node from the array delete it from the NodeList)?
Let's say I have a Nodelist:
list = document.querySelectorAll('div');
and I want to shuffle it. How would I do this?
The only answer I came across, here suggests turning the nodelist into an array
using
var arr = [].concat(x);
Similarly, the MDN suggests the following (to turn a NodeList into an array
):
var turnObjToArray = function(obj) {
return [].map.call(obj, function(element) {
return element;
})
};
My question is, is there no way to do this without turning a NodeList into an array?
And, which of the above two methods is better?
And, once you have turned a NodeList into an array, does anything change when you operate on certain members of the array? (I.e. does deleting one node from the array delete it from the NodeList)?
Share Improve this question edited Aug 3, 2017 at 19:14 Startec asked Aug 7, 2014 at 6:43 StartecStartec 13.3k28 gold badges110 silver badges170 bronze badges2 Answers
Reset to default 5If you need to change the order of elements in-place this may help you
var list = document.querySelector('div'), i;
for (i = list.children.length; i >= 0; i--) {
list.appendChild(list.children[Math.random() * i | 0]);
}
Working jsBin
Side note: concat() in general is slower
A modern alternative might be to use the CSS Grid or Flexbox Order attribute. The advantage to this approach is that it can be undone by simply removing the style.
var Scramble = function(){
[].slice.call( document.querySelectorAll(".myClass") ).filter( function( _e ){
_e.style.order = (Math.floor(Math.random() * (10) + 1));
} );
}
本文标签: javascriptHow to shuffle a NodeListStack Overflow
版权声明:本文标题:javascript - How to shuffle a NodeList - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744887795a2630591.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论