欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Jquery的Tabs内容轮换效果实现代码

程序员文章站 2023-11-01 16:16:34
代码如下:

代码如下:


<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> 

<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
    <title>jquery的tabs内容轮换效果实现代码,几行搞定</title> 
<script language="javascript" type="text/javascript" src="/scripts/jquery-1.4.4.min.js"></script> 
  <style type="text/css"> 
        * { margin:0; padding:0;} 
        body { font:12px verdana, geneva, sans-serif; color:#404040;}    
        .tabs { margin:10px 0 0 20px; width:360px; position:relative; overflow:hidden; height:1%; height:160px;} 
        .tabs span { z-index:2; font-size:12px; border:1px solid #d5d5d5; width:95px; height:25px; line-height:25px; text-align:center; float:left; margin-right:5px; cursor:pointer;} 
        span.active { background-position:0 -25px; background-color:#d5d5d5;} 
        #tab-01, #tab-02, #tab-03 { position:absolute; top:26px; left:0; width:338px; padding:10px; height:93px; border:1px solid #d5d5d5; z-index:1;} 
        #tab-02, #tab-03 { display:none;} 
    </style> 
    <script type="text/javascript"> 
        $(document).ready(function () { 
            $('.tabs span').mouver(function () { 
              //p隐藏
              $('.tabs p').hide();
              //查找.tabs span同辈元素span 后面紧邻的同辈元素p显示
              $(this).siblings('span').removeclass('active').end().addclass('active').next('p').show(); 
            }); 
        }); 
    </script> 
</head> 

<body> 
    <p class="tabs"> 
        <!-- 默认第一个tab为激活状态 --> 
        <span class="active">热点新闻</span> 
        <p id="tab-01">news</p> 
        <span>娱乐新闻</span> 
        <p id="tab-02">enteriment</p> 
        <span>就业形势</span> 
        <p id="tab-03">jobs</p> 
    </p> 
</body> 
</html>