jExpand不是整个表;只是为了一些线

时间:2013-04-29 13:17:02

标签: jquery html html-table expand

我正在尝试使用jExpand(http://www.jankoatwarpspeed.com/expand-table-rows-with-jquery-jexpand-plugin/)仅用于表格的某些行,而不是每一行!

您可以在演示链接上看到:

http://www.jankoatwarpspeed.com/wp-content/uploads/examples/expandable-rows/

您可以展开每一行(每个国家/地区)以获取更多信息。

我的情况我想要扩展一些不是每行的扩展。

例如,我想只扩展“英国”和“印度”系列。

我该怎么做?

我尝试删除div class="arrow"></div>,但我们仍然可以扩展该行:/

2 个答案:

答案 0 :(得分:1)

class添加到您不想展开的行中,并在脚本中忽略它们 在我的示例中,我添加了课程.nope

$("#report tr:odd:not(.nope)").addClass("master");
$("#report tr:not(.master, .nope)").hide();
$("#report tr:first-child").show();
$("#report tr.master").click(function(){
    $(this).next("tr").toggle();
    $(this).find(".arrow").toggleClass("up");
}); 

TEST IT HERE

答案 1 :(得分:0)

尝试从不想扩展的行中删除“奇数”类。 框架可能会使用该名称进行处理。如果框架是将该类属于行的框架,那么您需要检查框架选项......