我正在使用以下一些 JQuery 方法,并希望将它们转换为纯 JavaScript 以提高网页的性能。
$(function() {
$('#resultDetails').on('click', '.toggle', function() {
var findChildren = function(tr) {
var depth = tr.data('depth');
return tr.nextUntil($('tr').filter(function() {
return $(this).data('depth') <= depth;
}));
};
var el = $(this);
var tr = el.closest('tr');
var children = findChildren(tr);
var subnodes = children.filter('.expand');
subnodes.each(function() {
var subnode = $(this);
var subnodeChildren = findChildren(subnode);
children = children.not(subnodeChildren);
});
if(tr.hasClass('collapse')) {
tr.removeClass('collapse').addClass('expand');
children.hide();
} else {
tr.removeClass('expand').addClass('collapse');
children.show();
}
return children;
});
});
$(document).ready(function() {
$('table tr').on('click', function() {
$('#showContent').html($(this).find('.content').html());
});
$('table th').on('click', function() {
$('#showContent').html($(this).find('.content').html());
});
$('#resultDetails tbody tr').on('click', function(event) {
$(this).addClass('highlight').siblings().removeClass('highlight');
});
});
演示可以在http://jsfiddle.net/wYmwT/1/找到。如果表包含超过 2000 行,则加载需要大量时间。
有什么帮助吗?