我已將JQuery選項卡併入我的網站,但是我希望我的選項卡可以將高度展開並收縮到內容中。例如,當我的第一個標籤擴展到內容的高度時,當我轉到第二個標籤時,它停留在第一個標籤的高度,即使它的內容少得多。對不起,如果這是令人困惑。如何將標籤高度設置爲內容高度
下面是標籤代碼:
<script type="text/javascript">
$(document).ready(function() {
//Default Action
$(".tab_content").hide(); //Hide all content
$("ul.tabs li:first").addClass("active").show(); //Activate first tab
$(".tab_content:first").show(); //Show first tab content
//On Click Event
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
$(".tab_content").hide(); //Hide all tab content
var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
$(activeTab).fadeIn(); //Fade in the active content
return false;
});
});
</script>
這裏是一段代碼,我用周圍div
包裝,以控制div
的高度:
<script type="text/javascript">
$(function(){
var height = $("#content").height();
$(".tab_container").height(height);
});
</script>
如果您需要更多的信息讓我知道,我會提供。
您目前是否有調用該功能或僅在頁面加載時執行? –