最進遇到了問題,一個界面要展示很多內容,所以需要頁卡分開顯示,但是集成其它的拖動控件,導致jquery等tab控件失效,或者導入jquery后原本的腳本報錯。 所以找了個手寫的分享下:
先來張效果圖:

下面是HTML代碼:
<html xmlns="http://www.w3.org/1999/xhtml">
<head> <meta http-equiv="Content-Type" content="text/html;charset=gb2312" /> <title>簡潔Tab</title> <style type="text/CSS"> <!-- body,div,ul,li{ padding:0; text-align:center; } body{ font:12px "宋體"; text-align:center; }
ul{ list-style:none;} /*選項卡1*/ #Tab1{ width:100%; margin:0px; padding:0px; margin:0 auto;} /*選項卡2*/ #Tab2{ width:576px; margin:0px; padding:0px; margin:0 auto;} /*菜單class*/ .Menubox { width:100%; background:url(http://www.jb51.net/upload/small/20079299441652.gif); height:28px; line-height:28px; } .Menubox ul{ margin:0px; padding:0px; } .Menubox li{ float:left; display:block; cursor:pointer; width:114px; text-align:center; color:#949694; font-weight:bold; } .Menubox li.hover{ padding:0px; background:#fff; width:116px; border-left:1px solid #A8C29F; border-top:1px solid #A8C29F; border-right:1px solid #A8C29F; background:url(http://www.jb51.net/upload/small/200792994426548.gif); color:#739242; font-weight:bold; height:27px; line-height:27px; } .Contentbox{ clear:both; margin-top:0px; border:1px solid #A8C29F; border-top:none; height:181px; text-align:center; padding-top:8px; } --> </style> <script> <!-- /*第一種形式 第二種形式 更換顯示樣式*/ function setTab(name,cursel,n){ for(i=1;i<=n;i++){ var menu=document.getElementById(name+i); var con=document.getElementById("con_"+name+"_"+i); menu.className=i==cursel?"hover":""; con.style.display=i==cursel?"block":"none"; } } //--> </script> </head> <body>
<div id="Tab1"> <div class="Menubox"> <ul> <li id="one1" onClick="setTab('one',1,2)" class="hover">新聞1</li> <li id="one2" onClick="setTab('one',2,2)" >新聞2</li> </ul> </div> <div class="Contentbox"> <div id="con_one_1" class="hover">新聞列表1</div> <div id="con_one_2" style="display:none">新聞列表2</div> </div> </div>
</body>
新聞熱點
疑難解答