前几天刚开始使用DataTables.js,我想知道您是否可以在表自定义id
/ class
/ name
值上提供特定元素。例如,我已经更改了表格顶部“搜索”功能的文字,但是现在我想给输入框一个特定的id
。
这是我目前的尝试。
的jQuery
$("#thetable").dataTable({
"sPaginationType": "full_numbers",
"iDisplayLength": 100,
"oLanguage": {
"sSearch": "Filter results:"
}
});
$.fn.dataTableExt.oJUIClasses["sFilter"] = "my-style-class";
呈现HTML
答案 0 :(得分:2)
$('#thetable_filter input').attr('id', 'myId');