Я делаю 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>