更改 jQuery 中的默认可展开表行



我需要可扩展表行的示例,我发现这是迄今为止的最佳选择:

http://www.jqueryscript.net/table/jQuery-Plugin-For-Expandable-Bootstrap-Table-Rows.html

演示:http://www.jqueryscript.net/demo/jQuery-Plugin-For-Expandable-Bootstrap-Table-Rows/

当我单击标题时,表格将展开。我的问题是:默认情况下如何使表格展开?

我认为你可以为此编写jQuery。下面的代码应该有助于解决您的查询。

$("table tbody tr:first-child").next("tr").toggle();
$("table tbody tr:first-child").find(".arrow").toggleClass("up");

下面添加这个 jquery 将在加载文档后默认保持表展开

$(document).ready(function(){
  $("tbody>tr").css("display", "table-row");
});

相关内容

  • 没有找到相关文章

最新更新