惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
Google DeepMind News
Google DeepMind News
云风的 BLOG
云风的 BLOG
WordPress大学
WordPress大学
Vercel News
Vercel News
Apple Machine Learning Research
Apple Machine Learning Research
T
Tailwind CSS Blog
I
InfoQ
小众软件
小众软件
Recent Announcements
Recent Announcements
博客园 - 【当耐特】
The GitHub Blog
The GitHub Blog
大猫的无限游戏
大猫的无限游戏
美团技术团队
T
The Blog of Author Tim Ferriss
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | Blog
V
V2EX
J
Java Code Geeks
有赞技术团队
有赞技术团队
博客园 - 聂微东
B
Blog RSS Feed
博客园 - 司徒正美

博客园 - sonkoto

HTML5添加的一些常用新标签 css判断ie浏览器 [jQuery] table表格 [jQuery] menu_Sliding(menu 滑动) [jQuery]animated-hover [jQuery]animate(滑块滑动) [jQuery]图片更换 [jQuery] simple-disappear (消失的例子)——【转】 [转]jQuery formValidator【表达校验插件】 table Editor[table排序] [jQuery] jQuery Plugins by Dylan Verheul [转]jQuery源码解读---执行过程分析 [JQuery Cycle Plugin] 图片轮换 JQuery Cycle Plugin (jQuery循环插件_图片轮换) [转]JQuery效果展示--不看后悔N辈子 [转]DOV+CSS表单:超炫的单选框与复选框效果! [转]【★】javascript 常用代码 超经典! 【转】jQuery下拉框,单选框,多选框整理 Flash:百叶窗 效果
[jQuery] 漂亮的menu+样式表切换
sonkoto · 2008-07-17 · via 博客园 - sonkoto

 

代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
<html>
<head>
    
<title>menu</title>
    
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
    
<script src="jquery-1.2.6.pack.js" type="text/javascript"></script>

    
<script LANGUAGE="JavaScript">
    $(
function(){
        $(
".switchstyle").click(function(){
            
var cssstyle = "style_" + $(this).attr("title"+ ".css";
            $(
"#cssfile").attr("href",cssstyle);
        }
);
    }
)
    
</script>
    
    
<link href="style_blue.css" rel="stylesheet" type="text/css" id="cssfile" />
</head>

<body>
<div id="header">
  
<ul>
     
<li><class="homeActive" href="/"><em>home</em></a></li>
     
<li><class="gallery" href="/gallery/"><em>gallery entries</em></a></li>
     
<li><class="resources" href="/resources/"><em>resources</em></a></li>
     
<li><class="submit" href="/submit/"><em>submit a site</em></a></li>
     
<li><class="feed" href="/xml_feeds/"><em>our feed</em></a></li>
     
<li><class="blog" href="/blog/"><em>blog</em></a></li>
     
<li><class="about" href="/about/"><em>about</em></a></li>
     
<li><class="contact" href="/contact/"><em>contact</em></a></li> 
  
</ul>
  
<input type="button" class="switchstyle" value=" 1 " title="blue"/>
  
<input type="button" class="switchstyle" value=" 2 " title="green"/>
  
<input type="button" class="switchstyle" value=" 3 " title="purple"/>
</div>
</body>
</html>


附件:/Files/sonkoto/menu.rar

posted on 2008-07-17 17:52  sonkoto  阅读(790)  评论(0)    收藏  举报

刷新页面返回顶部