datatable 사용자 정의 검색 상자 + 한화

1370 단어 wordpress
HTML
 

JS





$(document).ready( function () {

	$('#table_id_example').DataTable({

	 "fnPreDrawCallback": function( oSettings ) {
        $('.dataTables_filter input').attr({'name':'search','placeholder': ' '});// 
    },

    language: {
        "sProcessing": " ...",
        "sLengthMenu": "  _MENU_  ",
        "sZeroRecords": " ",
        "sInfo": "  _START_   _END_  ,  _TOTAL_  ",
        "sInfoEmpty": "  0   0  ,  0  ",
        "sInfoFiltered": "(  _MAX_  )",
        "sInfoPostFix": "",
        "sSearch": " :",
        "sUrl": "",
        "sEmptyTable": " ",
        "sLoadingRecords": " ...",
        "sInfoThousands": ",",
        "oPaginate": {
            "sFirst": " ",
            "sPrevious": " ",
            "sNext": " ",
            "sLast": " "
        },
        "oAria": {
            "sSortAscending": ":  ",
            "sSortDescending": ":  "
        }
    }
});


	var table = $('#table_id_example').DataTable();



$('#my_news_search').on( 'keyup', function () {
    table.search( this.value ).draw();
} );

$('#my_news_search_btn').on( 'onclick', function () {
    table.search( this.value ).draw();
} );

} );

좋은 웹페이지 즐겨찾기