我使用的是由Luca Filosofi編寫的基本jQuery手風琴,來自this thread。這是我的版本:如何使用jquery將加減號添加到基本手風琴?
$('.product-details .post-body dl dt').on('click', function (e) {
e.preventDefault();
$(this).parent('dl').children('dd:visible').slideUp('fast');
$(this).nextUntil('dt').filter(':not(:visible)').slideDown('fast');
});
該腳本完美地工作。但是,我不知道如果在標題(例如:+標題)之前加上加號和減號文字(+
,-
),如果顯示或不顯示內容。
我有以下永久標記,它必須保持原樣。不能添加更多的類或HTML,除了通過jQuery:
<dl>
<dt>Title</dt>
<dd>Description 01</dd>
<dd>Description 02</dd>
<dt>Title</dt>
<dd>Description 01</dd>
<dd>Description 02</dd>
<dd>Description 03</dd>
</dl>
是什麼*內容含義顯示或不顯示。*? – Mohammad
我使用多個描述來定義一個單詞,將