我正在尝试使用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>
,但我们仍然可以扩展该行:/
答案 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");
});
答案 1 :(得分:0)
尝试从不想扩展的行中删除“奇数”类。 框架可能会使用该名称进行处理。如果框架是将该类属于行的框架,那么您需要检查框架选项......