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>
    
  • 相关阅读:
    【51NOD】1135 原根
    RuntimeWarning: More than 20 figures have been opened.
    获取当前文件夹下文件个数
    U盘装win10(我们无法创建新的分区,也找不到现有分区)
    我们无法创建分区也找不到现有的分区
    装系统——出现“invalid partition table”提示的原因
    python帮助文档的浏览
    opencv-python ,CV2读取中文路径和中文名称图片无结果,解决办法
    pyx文件编译
    安装polygon
  • 原文地址:https://www.cnblogs.com/a1111/p/12816671.html
Copyright © 2011-2022 走看看