0
我使用this scripton my site here.,但因爲jscript設置爲列表項ID,我不太確定如何安全地更改爲div。需要將列表項目更改爲div的jquery選項卡式內容
這是非常簡單的我知道,所以任何能夠指導我的人將不勝感激!
所有的代碼是在原頁面上的高度調整位是這樣的:
// Adjust outer wrapper to fit new list snuggly
var newHeight = base.$el.find("#"+listID).height();
$allListWrap.animate({
height: newHeight
});
我只是改變了列表項目的div和PS:
<div class="list-wrap">
<div id="featured">
<p>Stuff in here!</p>
</div>
<div id="core" class="hide">
<p>hello</p>
</div>
<div id="jquerytuts" class="hide">
<p>Stuff in here!</p>
</div>
<div id="classics" class="hide">
<p>Stuff in here!</p>
</div>
<div id="link" class="hide">
<p>Stuff in here!</p>
</div>
</div> <!-- END List Wrap -->
如果有誰知道並可以幫助那會很好..