我有一个方案来排序具有多种元素类型的列,下拉列表和字符串(HTML)类型 我想对包含下拉列表和HTML类型数据的特定列进行排序 这就是我尝试使用
“orderDataType”:“dom-select”和“sType”:'html'
$.fn.dataTable.ext.order['dom-select'] = function (settings, col)
{
return this.api().column(col,
{
order: 'index' }).nodes().map(function (td, i) {
return $('select', td).val();
});
}
但只有字符串才是排序 下拉列表没有排序。
请给我建议