js實(shí)現(xiàn)選項(xiàng)卡效果
本文實(shí)例為大家分享了js實(shí)現(xiàn)選項(xiàng)卡效果的具體代碼,供大家參考,具體內(nèi)容如下
<!DOCTYPE html><html><head> <title></title></head><script type='text/javascript'> window.onload=function(){ var ob = document.getElementById(’div1’); var ob1 = div1.getElementsByTagName(’input’); var ob2= div1.getElementsByTagName(’div’); for(var i = 0;i< ob1.length;i++){ ob1[i].index=i; ob1[i].onmouseover=function(){ for(var i = 0;i< ob1.length;i++){ ob2[i].style.display=’none’; ob1[i].className=’’; } this.className=’active’; ob2[this.index].style.display=’block’; } ob1[i].onmouseout=function(){ for(var i=0 ; i< ob1.length;i++){ ob2[i][’style’][’display’]=’none’; } } } }; </script><body><style type='text/css'>#div1 div{ width: 100px; height: 100px; border-top: 2px solid grey; background-color: #ccc;} .active { background-color: yellow;}</style><div id='div1'> <input type='button' value='1' class='active'><input type='button' value='2'><input type='button' value='3'><input type='button' value='4'><div >1111</div><div style='display: none;'>2222</div><div style='display: none;'>3333</div><div style='display: none;'>4444</div></div></body></html>
如果大家還想深入學(xué)習(xí),可以點(diǎn)擊兩個(gè)精彩的專(zhuān)題:javascript選項(xiàng)卡操作方法匯總 jquery選項(xiàng)卡操作方法匯總
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. moment轉(zhuǎn)化時(shí)間戳出現(xiàn)Invalid Date的問(wèn)題及解決2. python爬蟲(chóng)實(shí)戰(zhàn)之制作屬于自己的一個(gè)IP代理模塊3. 如何在jsp界面中插入圖片4. HTML 絕對(duì)路徑與相對(duì)路徑概念詳細(xì)5. WML的簡(jiǎn)單例子及編輯、測(cè)試方法第1/2頁(yè)6. 詳解盒子端CSS動(dòng)畫(huà)性能提升7. 解決ajax請(qǐng)求后臺(tái),有時(shí)收不到返回值的問(wèn)題8. asp批量添加修改刪除操作示例代碼9. .NET6打包部署到Windows Service的全過(guò)程10. ajax請(qǐng)求后臺(tái)得到j(luò)son數(shù)據(jù)后動(dòng)態(tài)生成樹(shù)形下拉框的方法
