为DataTables.js元素提供特定的id / class / names

时间:2013-12-12 18:15:45

标签: javascript jquery datatable datatables jquery-datatables

前几天刚开始使用DataTables.js,我想知道您是否可以在表自定义id / class / name值上提供特定元素。例如,我已经更改了表格顶部“搜索”功能的文字,但是现在我想给输入框一个特定的id

enter image description here

这是我目前的尝试。

的jQuery

        $("#thetable").dataTable({
            "sPaginationType": "full_numbers",
            "iDisplayLength": 100,
            "oLanguage": {
                "sSearch": "Filter results:"
            }
        });

        $.fn.dataTableExt.oJUIClasses["sFilter"] = "my-style-class";

呈现HTML

enter image description here

1 个答案:

答案 0 :(得分:2)

$('#thetable_filter input').attr('id', 'myId');