• 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>
    
  • 相关阅读:
    抓鱼社区
    DotNetTextBox V3.0 所见即所得编辑器控件Ver3.3.3 Free(免费版)
    Pet Shop 4.0系统
    北大青鸟PPT/ Net学习课件/asp.net,AJAX,ADO.net视频教程
    [开源]ASP.NET通用权限管理系统(FrameWork) 1.0.1 Release
    sql isnull函数
    几种常见算法的介绍及复杂度分析(转)
    ajaxpro配置与使用
    C#对图片的几种简单处理
    [你必须知道的.NET] 开篇有益
  • 原文地址:https://www.cnblogs.com/a1111/p/12816670.html
Copyright © 2020-2023  润新知