我对 Jquery 有点陌生,但希望我能在某个问题上获得一些帮助。
我创建了这段代码:
if( jQuery.inArray(categoryList, movieArray) == -1 ){
$('<h3 class="category"></h3>').html(categoryList).appendTo('#movieList');
movieArray.push(categoryList);
$("#movieList").append("<thead><tr><th class='long'>" + txtTitle + "</th><th>" + txtLength + "</th><th>" + txtLanguage + "</th></thead>");
}
var rows = "<tr><td>" + title + "</td><td>" + movieTime + "</td><td>" + language + "</td></tr>";
$("#movieList").append(rows);
});
$('#movieList .category').each(function(){
var $set = $(this).nextUntil(".category");
$set.wrapAll('<div class="movieTable"><table class="table dataTable"></table></div>');
});
基本上,我希望能够包装在标签中生成的 TR 标签组。原因是我想使用表格排序器插件,但除非表格区分 THEAD 和 TBODY,否则它将无法工作