gpt4 book ai didi

jQuery Datatables 元素放置

转载 作者:行者123 更新时间:2023-11-28 05:23:28 24 4
gpt4 key购买 nike

我正在处理一个使用 jQuery Datatables 的页面,我正在尝试弄清楚如何在标记中放置一个元素。

这是页面:

enter image description here

我希望“单击此处下载完整报告”链接与“资金摘要”标题在同一行的右侧对齐。

这是我用来添加标题的代码:

$(document).ready(function () {

var FStable = $('#tblFundingSummary').dataTable(
{
"scrollY": "300px",
"scrollCollapse": true,
"paging": false,

dom: '<"toolbar">rti<"floatRight"B><"clear">',

buttons: {
buttons: [
{ extend: 'excel', text: 'Export to Excel', exportOption: { page: 'current' }, footer: true }
]
}

});

$("#tblFundingSummary_wrapper div.toolbar").html('<h2>Funding Summary</h2><div style="text-align: right; float:right;"><a id="aExport" title="Click here to download full report" OnServerClick="ExportFundingSummaryToExcel" runat="server">Click here to download full report</a></div>');

最佳答案

由于您是通过代码添加标题和按钮,因此您可以标记 <h2>作为display:inline-blockfloat:left或任何其他满足您要求的CSS设置

$("#tblFundingSummary_wrapper div.toolbar")
.html('<h2 style="display: inline-block;">Funding Summary</h2><div style="text-align: right; float:right;"><a id="aExport" title="Click here to download full report" OnServerClick="ExportFundingSummaryToExcel" runat="server">Click here to download full report</a></div>');

关于jQuery Datatables 元素放置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38924130/

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