如圖所示,最簡單的選項卡
思路:
選項卡就是點擊按鈕切換到相應內容,其實就是點擊按鈕把內容通過display(block none)來實現切換的。
1、首先獲取元素。
2、for循環歷遍按鈕元素添加onclick 或者 onmousemove事件。
3、因為點擊當前按鈕時會以高亮狀態顯示,所以要再通過for循環歷遍把所有的按鈕樣式設置為空和把所有DIV的display設置為none。
4、把當前按鈕添加樣式,把當前DIV顯示出來,display設置為block。
注:給多個元素添加多個事件要用for循環歷遍。如選項卡是點擊切換,當前按鈕高度,點擊和按鈕高亮就是2個事件,所以要用2個for循環歷遍。
代碼的實現:
(1)html和css代碼:
<!DOCTYPE html> <html> <head> <meta charset="gb2312" /> <title>無標題文檔</title> <style> body,ul,li{margin:0; padding:0; font:12px/1.5 arial;} ul,li{list-style:none;} .wrap{width:500px; margin:20px auto;} .hide{display:none;} #tab_t{height:25px;border-bottom:1px solid #ccc;} #tab_t li{float:left; width:80px; height:24px; line-height:24px; margin:0 4px; text-align:center; border:1px solid #ccc; border-bottom:none; background:#f5f5f5; cursor:pointer} #tab_t .act{ position:relative; height:25px; margin-bottom:-1px; background:#fff;} #tab_c{border:1px solid #ccc; border-top:none; padding:20px;} </style> </head> <body> <div class="wrap"> <ul id="tab_t"> <li class="act">選擇1</li> <li>選擇2</li> <li>選擇3</li> <li>選擇4</li> </ul> <div id="tab_c"> <div>內容1</div> <div class="hide">內容2</div> <div class="hide">內容3</div> <div class="hide">內容4</div> </div> </div> </body> </html>
(2)實現簡單的切換效果
要點1:abc.document.getElementsByTagName("li"):取得abc下面的所有標簽為li的元素,返回的是一個元素集合,有數組的一些屬性。
要點2:循環,先循環給li加上onclick事件,再onlink事件點擊的時候,再循環讓所有選項卡的act樣式去掉,所有的內容隱藏。然后讓所點擊的選項及對應內容顯示。
要點3:tab_t_li[i].index = i; 在循環時,給選項卡加一個額外的屬性並賦值,以做選項卡和內容的對應。
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>tab選項卡</title> <style type="text/css"> body,ul,li{margin: 0;padding: 0;font:12px/1.5 arial;/* 字體12像素 行高 1.5em 字體 Arial */ } ul,li{list-style:none;} .wrap{width:500px; margin:20px auto;} .hide{display:none;} #tab_t{height:25px;border-bottom:1px solid #ccc;} #tab_t li{float:left; width:80px; height:24px; line-height:24px; margin:0 4px; text-align:center; border:1px solid #ccc; border-bottom:none; background:#f5f5f5; cursor:pointer} #tab_t .act{ position:relative; height:25px; margin-bottom:-1px; background:#fff;} #tab_c{border:1px solid #ccc; border-top:none; padding:20px;} </style> </head> <body> <div class="wrap"> <ul id="tab_t"> <li class="act">選擇1</li> <li>選擇2</li> <li>選擇3</li> <li>選擇4</li> </ul> <div id="tab_c"> <div>內容1</div> <div class='hide'>內容2</div> <div class='hide'>內容3</div> <div class='hide'>內容4</div> </div> </div> </body> <script type="text/javascript"> window.onload=function(){ var tab_t=document.getElementById('tab_t'); var tab_t_li=tab_t.getElementsByTagName('li'); var tab_c=document.getElementById('tab_c'); var tab_c_li=tab_c.getElementsByTagName('div'); var len=tab_t_li.length; var i=0; for(i=0;i<len;i++){ tab_t_li[i].index=i; tab_t_li[i].onclick=function(){ for(i=0;i<len;i++){ tab_t_li[i].className=''; tab_c_li[i].className='hide'; } tab_t_li[this.index].className='act'; tab_c_li[this.index].className=''; } } } </script> </html>
(3)寫成函數。
上面的寫法只能一個頁面用一個選項卡,如果再加一個的話,就需要復制一份,再改很多變量名。
要點:tab_t_li[i][evt] 因為傳值的時候是字符串,如果直接寫的話就是tab_t_li[i]."onclick"這樣話是執行不了的,tab_t_li["onclick"]這樣執行沒問題。
好了,現在一個頁面上就可以有多個切換了,只需要調用函數的時候,寫上相應的id名和標簽名,事件名稱就可以了。
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>tab選項卡</title> <style type="text/css"> body,ul,li{margin: 0;padding: 0;font:12px/1.5 arial;/* 字體12像素 行高 1.5em 字體 Arial */ } ul,li{list-style:none;} .wrap{width:500px; margin:20px auto;} .hide{display:none;} #tab_t{height:25px;border-bottom:1px solid #ccc;} #tab_t li{float:left; width:80px; height:24px; line-height:24px; margin:0 4px; text-align:center; border:1px solid #ccc; border-bottom:none; background:#f5f5f5; cursor:pointer} #tab_t .act{ position:relative; height:25px; margin-bottom:-1px; background:#fff;} #tab_c{border:1px solid #ccc; border-top:none; padding:20px;} </style> </head> <body> <div class="wrap"> <ul id="tab_t"> <li class="act">選擇1</li> <li>選擇2</li> <li>選擇3</li> <li>選擇4</li> </ul> <div id="tab_c"> <div>內容1</div> <div class='hide'>內容2</div> <div class='hide'>內容3</div> <div class='hide'>內容4</div> </div> </div> </body> <script type="text/javascript"> window.onload=function tab(tab_t,tab_t_tag,tab_c,tag_c_tag,evt){ var tab_t=document.getElementById('tab_t'); var tab_t_li=tab_t.getElementsByTagName('li'); var tab_c=document.getElementById('tab_c'); var tab_c_li=tab_c.getElementsByTagName('div'); var len=tab_t_li.length; var i=0; for(i=0;i<len;i++){ tab_t_li[i].index=i; tab_t_li[i].onclick=function(){ for(i=0;i<len;i++){ tab_t_li[i].className=''; tab_c_li[i].className='hide'; } tab_t_li[this.index].className='act'; tab_c_li[this.index].className=''; } } } tab("tab_t","li","tab_c","div","onmouseover"); </script> </html>