使用jq寫選項卡,告別了繁瑣的循環以及命名規範javascript
基本原理:css
1.當某一個btn被選中時,將這個btn的背景顏色設爲橘色,其他兄弟btn背景顏色設爲空(none)html
2.若是子div與btn的索引相同,就將這個div顯示而其餘兄弟div隱藏java
1).css函數參數2的回調函數方法;jquery
2).原生get方法再轉jq對象 再進行設置的方法ide
3).當前div使用show()方法,其他兄弟div使用hide()方法函數
關鍵字:get() siblings() show() hide() css()this
html頁:htm
4個btn,4個div對象
<div id="wrap"> <button>btn1</button> <button>btn2</button> <button>btn3</button> <button>btn4</button> <div>1</div> <div>2</div> <div>3</div> <div>4</div> </div>
css頁:
大盒子當前無樣式,在實際開發中須要指定其寬高;第一個btn背景色爲橘黃色;第一個子項div顯示,其他兄弟div隱藏
#wrap div { width: 300px; height: 200px; border: 1px solid red; display: none; } #wrap div:nth-of-type(1) { display: block; /* 第一個子項div顯示 */ } #wrap button:nth-of-type(1) { background: orange; /* 第一個btn背景色爲橘黃色; */ }
jquery頁:
1)首先給btn綁定事件
$("#wrap button").click(function() { //當btn被點擊後發生的事件 })
關鍵字: click();
2) 當btn被點擊時,設置當前選中btn顏色爲橘色,而且將其餘兄弟btn背景色爲空:
$(this).css("background", "orange").siblings("button").css("background", "none")
關鍵字: $(this); css(); siblings()
3) 聲明一個變量,這個變量保存了被選中的btn的下標
var $index = $(this).index();
關鍵字:$index; $(this);index();
// 1:找到全部的子div,而且設置css樣式,若是某個div的索引與btn的索引相同,就讓他顯示 $("#wrap div").css("display", function(i) { if (i == $index) { return "block"; } return "none"; })
關鍵字:css() ; "display" ; i == $index;
b:經過get()方法將子div的索引與當前btn的索引綁定,而後再將這個索引轉變成jq對象,再使用jq方法將對應div顯示
$($("#wrap div").get($(this).index())).css("display", "block").siblings("div").css("display", "none")
因爲get方法是js原生方法,因此應將其轉成jq對象才能使用jq方法
關鍵字: $() ; $(this).index; get();css();siblings()
c:經過當前btn的索引綁定div的索引,進而將這個索引對應的div顯示show(),並將其他的div兄弟元素隱藏hide()
$("#wrap div").eq($(this).index()).show().siblings("div").hide();
關鍵字:eq();$(this).index();show();hide()
這樣,就完成了使用jQuery方法實現選項卡。
以上。