- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
(function ($) {
$.fn.tabTmpl = function (jsonArr) {
if (jsonArr) {
var ths = this.find('thead th').clone(); // var tds = this.find('thead td').clone();
> var tds = $('td');
> ths.each(function(){ tds.append($('td').attr('id', this.id)); alert(tds.html());});
var bd = this.find('tbody');
$.each(jsonArr, function (i, v) {
tds.each(function () { this.innerHTML = v[this.id]; alert(this.id);});
$('<tr>').append(tds.clone().removeAttr('id')).appendTo(bd);
});
}
return this;
};
})(jQuery);
Спал за ночь 2 часа, решил к вечеру поправить плагин jQuery, чтобы работал как мне надо (по стилям чтобы все срасталось).
Как вывод: зависание Chromium и неплохая нагрузка на систему. ... Так и не понял почему )
bit0rez 25.04.2011 10:02 # 0
guest 25.04.2011 10:09 # +4
Слышиш jQuery, тебя поправили!
bugmenot 25.04.2011 11:01 # −1
bit0rez 25.04.2011 11:51 # +1