錶行這裏是jQuery code
爲expanding and collapsing the rows in a table
,但它似乎沒有工作。我哪裏錯了?展開和摺疊jQuery的
$('.Complex').click(function() {
if ($(this).hasClass("collapsed")) {
$(this).nextUntil('tr.Complex')
.find('td')
.parent()
.find('td > div')
.slideDown("fast", function() {
var $set = $(this);
$set.replaceWith($set.contents());
});
$(this).removeClass("collapsed");
} else {
$(this).nextUntil('tr.Complex')
.find('td')
.wrapInner('<div style="display: block;" />')
$(this).addClass("collapsed");
}.parent()
.find('td > div')
.slideUp("fast");
});
以下是的jsfiddle
https://jsfiddle.net/uxc3fkcm/
你有'語法錯誤} .parent()' - https://jsfiddle.net/arunpjohny/p0ujay76/2/- 應該是'$(this).parent()' –
感謝您幫助我修復我的代碼! (: –