渡//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>
實用的Jquery選項卡
腳本>
.order_box .stitle {
寬度:825px;
明確:正確;
高度:27px;
邊框底部:2px 實心#A100order}
} . .stitle .close {
寬度:80px;
高度:18px;
邊框頂部:1px 實心#dedede;
左邊實框:1px 實線#dedede;
右邊框:1px 實框:1px 實線#dedede;線#dedede;
背景:#f1f1f1;
顏色:#000;
文字對齊:居中;
浮動:左;
右邊距:5px;
頂部填充:8px ;
}
.order_box .stitle .open {
寬度:82px;
高度:20px;
背景:#A10000;
顏色:#fff;
文字對齊:居中;
浮動:左;
右邊距:5px;
頂部填充:8px;
溢出:隱藏;
}
.order_box ul li {
遊標:指標;
顯示:清單項目;
列表樣式:無;
}
風格>
//選項卡切換
$(function () {
$(".stitle li").click(function () {
var index_tab = $(this).parent(). child().index($( this)); // 選項卡的索引值
$(this).parent().find(".open").removeClass("open").addClass("close "); // 選項卡背景處理
$(this).removeClass("close").addClass("open");
var content_obj = $(".cntorder") //內容節點
content_obj.hide();
content_obj.eq(index_tab).show();
});
腳本>
頭>
身體>