私はこのようなHTMLを持っています:
<dl>
<dt class="tab-title">Title</dt>
<dd class="tab-content">Ain't Life Grand</dd>
</dl>
JS後の最終的なHTMLは次のようになる必要があります。
<dl>
<dt class="tab-title">Title</dt>
<dd class="tab-content">Ain't Life Grand</dd>
<dt class="tab-title">Another Title</dt>
<dd class="tab-content">Ain't Life Grand again</dd>
<dt class="tab-title">How'about Another</dt>
<dd class="tab-content">Ain't Life Grand last!</dd>
</dl>
私がこれまでに持っているJSは次のとおりです。
<script type="text/javascript">
var arrayData = {
titletwo: {
title: 'Another Title',
html: 'Ain\'t Life Grand again'
},
titlethree: {
title: 'How\'about Another',
html: 'Ain\'t Life Grand last!'
}
}
for (var key in arrayData) {
var obj = arrayData[key];
$$('dl').insert('<dt class="tab-title">'.obj['title'].'</dt>');
$$('dl').insert('<dd class="tab-content">'.obj['title'].'</dd>');
}
</script>
それは何もしていないようです。ピッチインしてください!