DataTables: dom位置最佳实践

如果你没有接入搜索引擎,一般你不会需要全局的搜索框。

你还可能在表格的上下方都需要显示分页导航条。 你可能还有其他需求。。。

我一般是这样设置的:


	$( document ).ready(function() {
		//正式初始化table
		table =	$('#myTable').DataTable({
				
				"dom": 'liptpr',  
                ...
                });
        }); 

l – 页大小调整

i – 记录总数

p-t-p   – 在表格上下方都显示分页导航条

r – 请求数据时显示"processing"字样 (注:要想看到"processing"需要设置table option – "processing":true)

Leave a Comment

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.