列にコメントを追加したい場合は、列にコメントを追加します。誰でも私を助けてくれますか?続き他のリストへのテキスト参照を追加するには?
<dl class="listings">
<dt>Apple</dt>
<dd>Delicious</dd>
<dt>Green Apple</dt>
<dd>Love it!</dd>
</dl>
<table>
<tr>
<td>Apple, Orange, Banana</td>
<td>Green Apple, Lemon</td>
</tr>
</table>
$(document).ready(function() {
$(".listings").find('dt').each(function() {
var title = $(this).html();
var comment = $(this).next().html();
$('table td').filter(":contains('"+title+"')").each(function(){
$(this).html('<span>'+title+'</span><span>'+comment+'</span>');
});
});
});
期待
Apple Delicious, Orange, Banana
Green Apple Love it!, Lemon
結果
Apple Delicious
Apple Delicious