更新了标题以更好地反映我正在尝试做的事情。
简而言之,不同的dom元素有不同的构造函数,而且它们似乎并不都共享一个共同的原型。我正在寻找一种通过修改这些原型为每个 DOM 元素添加函数属性的方法,但我不确定如何找到它们。
例如,我可以这样做:
function enhanceDom (tagNames, methods) {
var i=-1, tagName;
while (tagName=tagNames[++i]) {
var tag=document.createElement(tagName);
if (!(tag && tag.constructor)) continue;
for (var methodName in methods) {
tag.constructor.prototype[methodName]=methods[methodName];
}
}
}
var thingsToEnhance = ['a','abbr','acronym','address'/* on and on... */];
enhance(thingsToEnhance, {
doStuff : function(){
/* ... */
},
doOtherStuff : function(){
/* ... */
}
/* ... */
});
当然,我想这样做而不列出每一个 html 元素。谁能想到更好的方法?
(原问题如下)
目标 -在getElementsByClassName
任何浏览器中的任何 DOM 节点上工作。
它之前已经完成(有点),但这是我的尝试。
我的问题是,有没有一种好方法可以使用动态创建的元素来完成这项工作?似乎 HTML DOM 元素不共享一个getElementsByClassName
可以添加的通用可预测原型......或者我错过了什么?
这是我到目前为止所得到的(编辑- 每次讨论更新)。
(function(){
var fn = 'getElementsByClassName';
// var fn = 'gEBCN'; // test
if (typeof document[fn] != 'undefined') return;
// This is the part I want to get rid of...
// Can I add getByClass to a single prototype
// somewhere below Object and be done with it?
document[fn]=getByClass;
withDescendants(document, function (node) {
node[fn]=getByClass;
});
function withDescendants (node, callback, userdata) {
var nodes = node.getElementsByTagName('*'), i=-1;
while (node=nodes[++i]) {
callback(node, userdata);
}
return userdata;
}
function getByClass (className) {
return withDescendants(this, getMatches, {
query:new RegExp('(^|\\s+)' + className + '($|\\s+)'),
found:[]
}).found;
}
function getMatches (node, data) {
if (node.className && node.className.match(data.query)) {
data.found.push(node);
}
}
}());
它适用于脚本加载之前加载的内容,但新的动态创建的元素不会获得getElementsByClassName
方法。任何建议(除了setInterval,请)?