在jQuery中更改默认的可扩展表行

时间:2016-03-04 03:14:16

标签: jquery twitter-bootstrap expandable

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

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/

单击标题时,表格将展开。 我的问题是:如何默认扩展表格?

2 个答案:

答案 0 :(得分:0)

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

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

答案 1 :(得分:0)

在下面添加以下内容jquery将在加载文档后默认扩展表

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