这是其中一个看起来很简单,但我想不出一个好的方法来解决它。
我有一个节点,也许nodelist = document.getElementById("mydiv");
- 我需要将它规范化为一个节点列表。也不是一个数组:一个真实的、真正的nodeList
对象。
不是 nodelist = [document.getElementById("mydiv")];
请不要图书馆。
这是其中一个看起来很简单,但我想不出一个好的方法来解决它。
我有一个节点,也许nodelist = document.getElementById("mydiv");
- 我需要将它规范化为一个节点列表。也不是一个数组:一个真实的、真正的nodeList
对象。
不是 nodelist = [document.getElementById("mydiv")];
请不要图书馆。
获取 JavaScript 中已经引用的任何元素,给它一个我们可以使用选择器找到的属性,将其作为列表查找,删除属性,返回列表。
function toNodeList(elm){
var list;
elm.setAttribute('wrapNodeList','');
list = document.querySelectorAll('[wrapNodeList]');
elm.removeAttribute('wrapNodeList');
return list;
}
从 bfavaretto 的回答扩展而来。
function toNodeList(elm, context){
var list, df;
context = context // context provided
|| elm.parentNode; // element's parent
if(!context && elm.ownerDocument){ // is part of a document
if(elm === elm.ownerDocument.documentElement || elm.ownerDocument.constructor.name === 'DocumentFragment'){ // is <html> or in a fragment
context = elm.ownerDocument;
}
}
if(!context){ // still no context? do David Thomas' method
df = document.createDocumentFragment();
df.appendChild(elm);
list = df.childNodes;
// df.removeChild(elm); // NodeList is live, removeChild empties it
return list;
}
// selector method
elm.setAttribute('wrapNodeList','');
list = context.querySelectorAll('[wrapNodeList]');
elm.removeAttribute('wrapNodeList');
return list;
}
我最近想到了另一种方法
var _NodeList = (function () {
var fragment = document.createDocumentFragment();
fragment.appendChild(document.createComment('node shadows me'));
function NodeList (node) {
this[0] = node;
};
NodeList.prototype = (function (proto) {
function F() {} // Object.create shim
F.prototype = proto;
return new F();
}(fragment.childNodes));
NodeList.prototype.item = function item(i) {
return this[+i || 0];
};
return NodeList;
}());
现在
var list = new _NodeList(document.body); // note **new**
list.constructor === NodeList; // all these are true
list instanceof NodeList;
list.length === 1;
list[0] === document.body;
list.item(0) === document.body;
恢复这个是因为我最近想起了一些关于JavaScript的东西。这取决于如何检查NodeList,但是..
const singleNode = ((nodeList) => (node) => {
const layer = { // define our specific case
0: { value: node, enumerable: true },
length: { value: 1 },
item: {
value(i) {
return this[+i || 0];
},
enumerable: true,
},
};
return Object.create(nodeList, layer); // put our case on top of true NodeList
})(document.createDocumentFragment().childNodes); // scope a true NodeList
现在,如果你这样做
const list = singleNode(document.body); // for example
list instanceof NodeList; // true
list.constructor === NodeList; // true
并list
具有属性长度 1
和0作为您的节点,以及从NodeList继承的任何内容。
如果你不能使用Object.create
,你可以做同样的事情,除了作为带有原型nodelist
和设置的构造函数this['0'] = node;
,this['length'] = 1;
并使用new
.
ES5 版本
var singleNode = (function () {
// make an empty node list to inherit from
var nodelist = document.createDocumentFragment().childNodes;
// return a function to create object formed as desired
return function (node) {
return Object.create(nodelist, {
'0': {value: node, enumerable: true},
'length': {value: 1},
'item': {
"value": function (i) {
return this[+i || 0];
},
enumerable: true
}
}); // return an object pretending to be a NodeList
};
}());
如果您的目标浏览器支持document.querySelectorAll
,它将始终返回一个NodeList
. 所以:
var nodelist = document.querySelectorAll("#mydiv");
另一种基于 Reflect.construct 的方法:https ://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/construct
与其他情况一样,它需要修补 NodeList.prototype.item 才能调用此函数。
NodeList.prototype.item = function item(i) {
return this[+i || 0];
};
let nl = Reflect.construct(Array, [], NodeList);
要使用节点创建它,请将节点数组作为第二个参数。此方法通过检查:
list instanceof NodeList; // true
list.constructor === NodeList; // true
使用它创建的数组可以使用for..of
,forEach
和其他标准方法进行迭代,您可以使用 simple 向其中添加元素nl[n] = node;
。
var nodeList = document.createDocumentFragment();
nodeList.appendChild(document.getElementById("myDiv"));