zoukankan      html  css  js  c++  java
  • JavaScript实现鼠标放上去之后高亮显示且隔行换色

    <!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" xml:lang="en">
    <head>
    <span style="white-space:pre">	</span><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <span style="white-space:pre">	</span><title>鼠标放上去之后隔行换色</title>
    <span style="white-space:pre">	</span><script type="text/javascript" src="js/jquery-1.8.3.js"></script>
    <span style="white-space:pre">	</span><script type="text/javascript">
    <span style="white-space:pre">		</span>$(function(){
    <span style="white-space:pre">			</span>$("tr:even").css("background-color","orange");
    <span style="white-space:pre">			</span>$("tr:odd").css("background-color","pink");
    <span style="white-space:pre">			</span>$("td").hover(function(){
    <span style="white-space:pre">				</span>$(this).addClass('cs1');
    <span style="white-space:pre">			</span>},function(){
    <span style="white-space:pre">				</span>$(this).removeClass('cs1');
    <span style="white-space:pre">			</span>})
    <span style="white-space:pre">		</span>})
    <span style="white-space:pre">	</span></script>
    <span style="white-space:pre">	</span><style type="text/css">
    <span style="white-space:pre">		</span>tr{
    <span style="white-space:pre">			</span>text-align: center;
    <span style="white-space:pre">			</span>/*background-color: orange;*/
    <span style="white-space:pre">		</span>}
    <span style="white-space:pre">		</span>.cs1{
    <span style="white-space:pre">			</span>background-color: red;
    <span style="white-space:pre">			</span>
    <span style="white-space:pre">		</span>}
    <span style="white-space:pre">		</span>div{
    <span style="white-space:pre">			</span>margin:0px auto;
    <span style="white-space:pre">		</span>}
    <span style="white-space:pre">	</span></style>
    </head>
    <body>
    <span style="white-space:pre">	</span><table border="1" cellspacing="0" width="50%">
    <span style="white-space:pre">		</span><tr>
    <span style="white-space:pre">			</span><td>家里的福克斯愤怒地说开发都是法律的时间发了</td>
    <span style="white-space:pre">		</span></tr>
    <span style="white-space:pre">		</span><tr>
    <span style="white-space:pre">			</span><td>家里的福克斯愤怒地说开发法律的电风扇时间发了</td>
    <span style="white-space:pre">		</span></tr>
    <span style="white-space:pre">		</span><tr>
    <span style="white-space:pre">			</span><td>家里的福克斯愤怒地说开发法律方式放到的时间发了</td>
    <span style="white-space:pre">		</span></tr>
    <span style="white-space:pre">		</span><tr>
    <span style="white-space:pre">			</span><td>家里的福克斯愤怒地说开发法放到是律的时间发了</td>
    <span style="white-space:pre">		</span></tr>
    <span style="white-space:pre">		</span><tr>
    <span style="white-space:pre">			</span><td>家里的福克斯愤怒方式地说开服饰发法律的时间发了</td>
    <span style="white-space:pre">		</span></tr>
    <span style="white-space:pre">		</span><tr>
    <span style="white-space:pre">			</span><td>家里的福克斯愤怒地说开佛挡杀佛方式发法律的时间发了</td>
    <span style="white-space:pre">		</span></tr>
    <span style="white-space:pre">		</span><tr>
    <span style="white-space:pre">			</span><td>家里的福克斯愤怒地说开佛挡杀佛方式发法律的时间发了</td>
    <span style="white-space:pre">		</span></tr>
    <span style="white-space:pre">		</span><tr>
    <span style="white-space:pre">			</span><td>家里的福克斯愤怒地说佛挡杀佛方式开发法律的时间发了</td>
    <span style="white-space:pre">		</span></tr>
    <span style="white-space:pre">	</span></table>
    </body>
    </html>
    
  • 相关阅读:
    python的内存管理
    redis 为啥要主从复制·
    django框架的ORM模型优缺点
    Pytorch学习:实现ResNet34网络
    Pytorch学习:线性回归
    Pytorch学习:CIFAR-10分类
    论文阅读笔记(六十七)【arXiv2021】:Contextual Non-Local Alignment over Full-Scale Representation for Text-Based Person Search
    论文阅读笔记(六十六)【ICCV2019】:Adversarial Representation Learning for Text-to-Image Matching
    论文阅读笔记(六十五)【ECCV2018】:Deep Cross-Modal Projection Learning for Image-Text Matching
    论文阅读笔记(六十四)【arXiv2021】:TransReID: Transformer-based Object Re-Identification
  • 原文地址:https://www.cnblogs.com/a1111/p/12816670.html
Copyright © 2011-2022 走看看