zoukankan
html css js c++ java
js 实现 datagrid 鼠标移动时datagrid 表的该变
private
void
DataGridLogininfo_ItemDataBound(
object
sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
{
ListItemType itemType
=
e.Item.ItemType;
if
(itemType
==
ListItemType.Item )
{
e.Item.Attributes[
"
onmouseout
"
]
=
"
javascript:this.style.backgroundColor='#dedfde';
"
;
e.Item.Attributes[
"
onmouseover
"
]
=
"
javascript:this.style.backgroundColor='#fff7ce';cursor='hand';
"
;
}
else
if
( itemType
==
ListItemType.AlternatingItem)
{
e.Item.Attributes[
"
onmouseout
"
]
=
"
javascript:this.style.backgroundColor='#ffffff';
"
;
e.Item.Attributes[
"
onmouseover
"
]
=
"
javascript:this.style.backgroundColor='#fff7ce';cursor='hand';
"
;
}
}
查看全文
相关阅读:
PHP 类的继承问题
爬虫第一章
如何给CBV添加装饰器
结巴分词 gensim系数矩阵相似度 pypinyin
elasticsearch 第二章 elasticsearch的详细用法及参数
运维自动化 第五章 playbook 模块补充
运维自动化 第四章 模块
运维自动化 第三章 ansible
正则补充
运维自动化 第二章 openpyxl的用法,读写excel内容
原文地址:https://www.cnblogs.com/gwazy/p/111118.html
最新文章
欧几里德辗转相除法 费马小定理 欧拉定理 扩展欧几里德算法简介
定时线程池执行任务时任务执行时间与定时关系
Spring AOP理解
java框架-spring
Java基础-多线程
java基础-集合
java框架-mvc
POI实现Word转HTML文件
前情介绍
struts1上传文件大小限制导致的问题
热门文章
Java SE之反射回顾
sublimetext
notepad++
Adobe Dreamweaver(DW)
Eclipse PHP Studio(EPP)
laravel 数据库迁移
laravel 表单验证
php 处理别人直接丢过来的json字符串
php静态方法使用小记
php常用Stream函数集介绍与测试
Copyright © 2011-2022 走看看