gpt4 book ai didi

Javascript 闭包和 DOM 生成器

转载 作者:行者123 更新时间:2023-11-29 15:53:05 25 4
gpt4 key购买 nike

我正在制作一个 DOM 生成器,我已经成功地工作了,但现在我正在尝试分配一些速记函数,以便 div() -> e("div")

这是我的代码:

//assign these objects to a namespace, defaults to window
(function(parent) {

/**
* Creates string of element
* @param tag The element to add
* @param options An object of attributes to add
* @param child ... n Child elements to nest
* @return HTML string to use with innerHTML
*/
var e = function(tag, options) {
var html = '<'+tag;
var children = Array.prototype.slice.apply(arguments, [(typeof options === "string") ? 1 : 2]);

if(options && typeof options !== "string") {
for(var option in options) {
html += ' '+option+'="'+options[option]+'"';
}
}

html += '>';
for(var child in children) {
html += children[child];
}
html += '</'+tag+'>';
return html;
}

//array of tags as shorthand for e(<tag>) THIS PART NOT WORKING
var tags = "div span strong cite em li ul ol table th tr td input form textarea".split(" "), i=0;
for(; i < tags.length; i++) {
(function(el) { //create closure to keep EL in scope
parent[el] = function() {
var args = Array.prototype.slice.call(arguments);
console.log(args);
args[0] = el; //make the first argument the shorthand tag
return e.apply(e,args);
};
})(tags[i]);
}

//assign e to parent
parent.e = e;
})(window);

当前发生的情况是,每次我调用其中一个速记函数时,args 数组都会被修改,我假设需要发生的是某处的闭包,这样我创建的 args 数组在每次调用时都不会受到影响。这是单元测试的输出:

div( div( span("Content")), span()) 预计:<div><div><span>Content</span></div><span></span></div>结果:<div><span></span></div>

div( div( span( e("b", e("b", e("b")))), span())) 预计:<div><div><span><b><b><b></b></b></b></span><span></span></div></div>结果:<div></div>

最佳答案

虽然这不能直接回答你的问题,

for(var el in tags) {

不完全正确。 tags 是一个数组,不是一个对象,所以它的属性不能用for (... in ...) 来枚举。尝试

for(var el = 0; el < tags.length; el++) {

这会对解释器对您的代码的理解...以及正确执行您的算法产生巨大的影响。

关于Javascript 闭包和 DOM 生成器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3075749/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com