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

推荐订阅源

S
Schneier on Security
有赞技术团队
有赞技术团队
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
D
DataBreaches.Net
F
Full Disclosure
腾讯CDC
博客园 - 【当耐特】
MyScale Blog
MyScale Blog
Stack Overflow Blog
Stack Overflow Blog
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
爱范儿
爱范儿
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
大猫的无限游戏
大猫的无限游戏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
SegmentFault 最新的问题
The Register - Security
The Register - Security
WordPress大学
WordPress大学
博客园 - 聂微东
雷峰网
雷峰网
J
Java Code Geeks
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
P
Privacy International News Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
A
Arctic Wolf
Scott Helme
Scott Helme
C
Cyber Attacks, Cyber Crime and Cyber Security
T
Tor Project blog
博客园 - 三生石上(FineUI控件)
Know Your Adversary
Know Your Adversary
AWS News Blog
AWS News Blog
G
Google Developers Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
C
CERT Recently Published Vulnerability Notes
O
OpenAI News
Project Zero
Project Zero
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Application and Cybersecurity Blog
Application and Cybersecurity Blog
云风的 BLOG
云风的 BLOG
N
News and Events Feed by Topic
MongoDB | Blog
MongoDB | Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Microsoft Security Blog
Microsoft Security Blog
Cisco Talos Blog
Cisco Talos Blog
P
Palo Alto Networks Blog
Schneier on Security
Schneier on Security

博客园 - 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>