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

推荐订阅源

The Hacker News
The Hacker News
博客园_首页
人人都是产品经理
人人都是产品经理
博客园 - 聂微东
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
Blog — PlanetScale
Blog — PlanetScale
博客园 - 三生石上(FineUI控件)
A
About on SuperTechFans
V
Visual Studio Blog
小众软件
小众软件
MyScale Blog
MyScale Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Full Disclosure
酷 壳 – CoolShell
酷 壳 – CoolShell
T
The Exploit Database - CXSecurity.com
C
CERT Recently Published Vulnerability Notes
T
Threat Research - Cisco Blogs
AWS News Blog
AWS News Blog
T
Tor Project blog
Jina AI
Jina AI
GbyAI
GbyAI
C
Comments on: Blog
IT之家
IT之家
Apple Machine Learning Research
Apple Machine Learning Research
A
Arctic Wolf
有赞技术团队
有赞技术团队
SecWiki News
SecWiki News
L
Lohrmann on Cybersecurity
Security Latest
Security Latest
Webroot Blog
Webroot Blog
C
Cisco Blogs
雷峰网
雷峰网
云风的 BLOG
云风的 BLOG
博客园 - 叶小钗
K
Kaspersky official blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
宝玉的分享
宝玉的分享
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
O
OpenAI News
H
Hacker News: Front Page
D
Darknet – Hacking Tools, Hacker News & Cyber Security
D
Docker
P
Palo Alto Networks Blog
The Register - Security
The Register - Security
B
Blog RSS Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志

博客园 - 白沙

自定义鼠标右键弹出式菜单 web菜单的实现【zt】 深入浅出理解索引结构[zt] 你真的了解.NET中的String吗? 堆和栈的区别 软件团队的建设和软件开发管理[zz老秦] 简单的SOCKET传送文件和字符串实现 类与结构的区别 C#中ref和out的使用小结 CSS中expression使用简介(转载) C#箴言:定义常量的两种方法 网页弹出窗口代码【来源于网络】 注意document中需要对象的方式,区别下面四种 jsp对checkbox的操作 div的操作 How to populate the datagrid on background thread with data binding by using Visual C# Good morning I'm very happy to come here to study with you 在 ASP.NET 中执行 URL 重写
特效:CSS+Javascript实现表格背景变色
白沙 · 2007-05-19 · via 博客园 - 白沙

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> CSS样式里使用JavaScript(onmouseover/onmouseout)2</TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT=""><style type="text/css">
table
{

 background-color

:#000000;
 cursor
:hand;
}

td

{
  
/*设置onmouseover事件*/
  onmouseover
: expression(onmouseover=function (){this.style.borderColor ='blue';this.style.color='red';this.style.backgroundColor ='yellow'});/*设置onmouseout事件*/
  onmouseout: expression(onmouseout=function ()
{this.style.borderColor='';this.style.color='';this.style.backgroundColor =''});
  background-color:#ffffff;
}
</style>
</HEAD><BODY>
<TABLE cellspacing='1px' border='1'>
<TR >
 
<TD >1    </TD>
 
<TD>2   </TD>
 
<TD>3   </TD>
</TR>
<TR >
 
<TD >4    </TD>
 
<TD>5   </TD>
 
<TD>6   </TD>
</TR>
</TABLE>
</BODY>
</HTML>