zoukankan
html css js c++ java
GridView鼠标移动行变色
方法一:
在GridView的
protected
void
GridView1_RowDataBound(
object
sender, GridViewRowEventArgs e)
{
if
(e.Row.RowType
==
DataControlRowType.DataRow)
{
e.Row.Attributes.Add(
"
onMouseOver
"
,
"
SetNewColor(this);
"
);
e.Row.Attributes.Add(
"
onMouseOut
"
,
"
SetOldColor(this);
"
);
}
}
在页面中加入
<
SCRIPT language
=
javascript
>
var _oldColor;
function SetNewColor(source)
{
_oldColor
=
source.style.backgroundColor;
source.style.backgroundColor
=
'
#666666
'
;
}
function SetOldColor(source)
{
source.style.backgroundColor
=
_oldColor;
}
</
SCRIPT
>
方法二:
protected
void
GridView1_RowDataBound(
object
sender, GridViewRowEventArgs e)
{
if
(e.Row.RowType
==
DataControlRowType.DataRow)
{
e.Row.Attributes[
"
onMouseOver
"
]
=
"
js.ItemOver(this)
"
;
}
}
在页面上加入
<
SCRIPT language
=
javascript type
=
text
/
javascript
>
var js
=
new
function()
{
if
(
!
objbeforeItem)
{var objbeforeItem
=
null
;var objbeforeItembackgroundColor
=
null
;}
this
.ItemOver
=
function(obj)
{
if
(objbeforeItem)
{objbeforeItem.style.backgroundColor
=
objbeforeItembackgroundColor;}
objbeforeItembackgroundColor
=
obj.style.backgroundColor;
objbeforeItem
=
obj;
obj.style.backgroundColor
=
"
#fcfcfc
"
;
}
}
</
SCRIPT
>
方法三:
protected
void
GridView1_RowDataBound(
object
sender, GridViewRowEventArgs e)
{
if
(e.Row.RowType
==
DataControlRowType.DataRow)
{
//
鼠标移动到每项时颜色交替效果
e.Row.Attributes.Add(
"
OnMouseOut
"
,
"
this.style.backgroundColor='White';this.style.color='#003399'
"
);
e.Row.Attributes.Add(
"
OnMouseOver
"
,
"
this.style.backgroundColor='#6699FF';this.style.color='#8C4510'
"
);
//
设置悬浮鼠标指针形状为"小手"
e.Row.Attributes[
"
style
"
]
=
"
Cursor:hand
"
;
}
}
//
----------------------------------------
protected
void
GridView1_RowDataBound(
object
sender, GridViewRowEventArgs e)
{
if
(e.Row.RowType
==
DataControlRowType.DataRow)
//
判断是否是DataRow,以防止鼠标经过Header也有效果
{
e.Row.Attributes.Add(
"
onmouseover
"
,
"
e=this.style.backgroundColor; this.style.backgroundColor='#cccccc'
"
);
e.Row.Attributes.Add(
"
onmouseout
"
,
"
this.style.backgroundColor=e
"
);
}
}
查看全文
相关阅读:
x32dbg之AttachHelper插件
x32dbg插件之APIInfo
x32dbg之Scylla脱壳插件
x32dbg插件之strongOD(又名SharpOD)
x32dbg新型插件之loli(萝莉)
7 个超棒的监控工具
成为程序员前需要做的10件事
改良程序的11个技巧
旧衣物捐献地址和注意事项
一件衣服好不好,看看标签就知道
原文地址:https://www.cnblogs.com/juan/p/1424642.html
最新文章
x64dbg的插件如何汉化不乱码解决方法
x32dbg/x64dbg最有价值的100个插件
最有价值的100个Ollydbg插件评选
Ollydbg/x32dbg/x64dbg贴心伴侣 Version2.48使用详解和开发历程:
不会下载或有疑心病的同学可以看这里!
1000款单文件便携版软件
Baymax大白补丁从菜鸟到精通
PowerPro使用心得视频分享
Wing IDE for python 6.1汉化版内部欣赏
数千款软件使用技巧和视频合集
热门文章
W32dasm+脚本一波流打法
x32dbg之Multilime Ultimate Assembler插件
x32dbg插件之SlothBp
x32dbg插件之BreakModule
x32dbg插件之x64dbg_tol
x32dbg之Strings插件
x32dbg之ScyllaHide插件
x32dbg之API Break插件
x32dbg插件MagicPoints
x32dbg插件之KTracker 跟踪器/飘云阁wgz00
Copyright © 2011-2022 走看看