gpt4 book ai didi

Jquery 数据表搜索框左对齐

转载 作者:行者123 更新时间:2023-12-03 22:54:33 26 4
gpt4 key购买 nike

我正在使用主干和 jQuery 数据表。默认情况下,数据表的搜索框位于右侧 -我想将其左对齐。下面是我的代码:

onDomRefresh: function(){
$(this.el).find('table').dataTable({ "dom": '<"top"i>rt<"bottom"flp><"clear">',"bLengthChange": false });
}

enter image description here

但是它不起作用。

最佳答案

你可以使用类似的东西

jQuery(document).ready(function($) {
$(tableSelector).DataTable({
"dom": '<"pull-left"f><"pull-right"l>tip'
});
});

.pull-left{float:left!important;}
.pull-right{float:right!important;}

结果是这样的:

(请注意,屏幕截图中使用了 Twitter Bootsrap,以实现额外的表格样式)

有关 DataTables DOM 操作的更多信息,请参见 here .

关于Jquery 数据表搜索框左对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27206031/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com