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

推荐订阅源

T
The Blog of Author Tim Ferriss
S
Securelist
D
Docker
The Register - Security
The Register - Security
GbyAI
GbyAI
Recorded Future
Recorded Future
Engineering at Meta
Engineering at Meta
Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
罗磊的独立博客
博客园 - 【当耐特】
F
Full Disclosure
WordPress大学
WordPress大学
腾讯CDC
小众软件
小众软件
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
SecWiki News
SecWiki News
L
Lohrmann on Cybersecurity
I
InfoQ
MyScale Blog
MyScale Blog
量子位
Cyberwarzone
Cyberwarzone
博客园 - 三生石上(FineUI控件)
The Hacker News
The Hacker News
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
博客园_首页
H
Help Net Security
K
Kaspersky official blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Webroot Blog
Webroot Blog
Blog — PlanetScale
Blog — PlanetScale
V
Vulnerabilities – Threatpost
Y
Y Combinator Blog
The Cloudflare Blog
P
Proofpoint News Feed
V
Visual Studio Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
T
Tailwind CSS Blog
爱范儿
爱范儿
P
Privacy International News Feed
Security Archives - TechRepublic
Security Archives - TechRepublic
The GitHub Blog
The GitHub Blog
C
Cybersecurity and Infrastructure Security Agency CISA
B
Blog RSS Feed

博客园 - Lee Vane

无法通过“控制面板”卸载 Office 2003、Office 2007 或 Office 2010 套件的情况下,如何才能将其卸载? 量子恒道统计-淘宝添加步骤 朋友写的,我觉得比较好,批量生产HTML中使用的 使用CSS设计了一个导航栏(仿康盛创想) 文章内容分页 ASP多行多列显示代码- 5行 Formfieldhints.--表单提示效果 项目分享---google calendar.(日历,java版). asp根据出生时间判断生肖 用 JavaScript 实现网页图片等比例缩放 ASP数据库操作类 新闻标题太长加省略号和对内容太长分页 检查组件是否已经安装,用Jmail组件发送邮件 格式化日期 ASP函数,实现多个功能的弹出对话框 全选并改变TR颜色 选择文字就能选择复选框 简洁的TAB 阿里妈妈的商城分类效果一
可点击的下拉菜单
Lee Vane · 2008-11-02 · via 博客园 - Lee Vane


<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
div{ float:left;}
.box{ width:335px; height:auto;}
.mainBox{ width:335px; height:auto; border:1px #ccc solid; }
.navbox{ width:335px; height:auto;}
.navborder_right {border-right: 1px solid #bbb;}
.navborder_left {border-left: 1px solid #bbb;}
.pro_boxNone{ width:335px; height:200px; display:none; padding:10px;}
.pro_box{ width:335px; height:200px; overflow:hidden;padding:10px;}
.navon {width: 65px;height: 21px;background: #000; color:fff; font-family:"宋体"; font-size:12px; text-align:center; padding:5px 0 0 0;}
.navon a{ color:#fff; text-decoration:none; font-weight:bold;}
.navon a:hover{ color:red;}
.navun {width: 65px;height: 21px;background: #fff;font-family:"宋体"; font-size:12px; text-align:center; padding:5px 0 0 0;}
.navun a{ color:#000;font-weight:bold; text-decoration:none;}
.navun a:hover{color:red;}
</style>
<script type="text/javascript">
function toggleHot(encodeTag) {
 tabsDiv = document.getElementById('hotTabs');
 tabs = tabsDiv.childNodes;
 isPrevious = true;
 for(tab in tabs) {
  if(tabs[tab].nodeType!=1) {
   continue;
  }
  if(tabs[tab].id == 'tagtab_'+encodeTag) {
   tabs[tab].className = 'navon';
   isPrevious = false;
  }
  else {
   if(isPrevious) {
    tabs[tab].className=tabs[tab].className = 'navun';
   }
   else {
    tabs[tab].className=tabs[tab].className = 'navun';
   }
  
  }
 }
 
 prodDiv = document.getElementById('hotProd');
 divs = prodDiv.childNodes;
 for(p in divs) {
  if(divs[p].nodeType!=1) {
   continue;
  }
  if(divs[p].id == 'hotpro_'+encodeTag) {
   divs[p].style.display = "block";
  }
  else {
   divs[p].style.display = "none";
  }
 }
 
}
</script>
</head>
<body>
<div class="box">
<div id="hotTabs" class="navbox">
<div id="tagtab_showA" class="navon " onclick="toggleHot('showA');"><a href="#" onclick="return false">导航一</a></div>
<div id="tagtab_showB" class="navun" onclick="toggleHot('showB');"><a href="#" onclick="return false">导航二</a></div>
<div id="tagtab_showC" class="navun" onclick="toggleHot('showC');"><a href="#" onclick="return false">导航三</a></div>
<div id="tagtab_showD" class="navun" onclick="toggleHot('showD');"><a href="#" onclick="return false">导航四</a></div>
<div id="tagtab_showE" class="navun " onclick="toggleHot('showE');"><a href="#" onclick="return false">导航五</a></div>
</div>
<div class="mainBox" id="hotProd">
<div class="pro_box" id="hotpro_showA" >内容一</div>
<div class="pro_boxNone" id="hotpro_showB" >内容二</div>
<div class="pro_boxNone" id="hotpro_showC" >内容三</div>
<div class="pro_boxNone" id="hotpro_showD" >内容四</div>
<div class="pro_boxNone" id="hotpro_showE" >内容五</div>

</div>
</div>
</body>
</html>