标题:[求助]gridview随光标的移动改变颜色
取消只看楼主
笑看人生活快乐
Rank: 1
等 级:新手上路
帖 子:82
专家分:0
注 册:2007-5-20
 问题点数:0 回复次数:0 
[求助]gridview随光标的移动改变颜色

我们在用鼠标在gridview上停留时,gridview就会改变颜色,如下所示:

protected void GridView1_RowDataBound1(object sender, GridViewRowEventArgs e)
{
int i;
//执行循环,保证每条数据都可以更新
for (i = 0; i < GridView1.Rows.Count; i++)
{
//首先判断是否是数据行
if (e.Row.RowType == DataControlRowType.DataRow)
{
//当鼠标停留时更改背景色
e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#00A9FF'");
//当鼠标移开时还原背景色
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c");


}
}

}

怎么样将其修改成为,当光标在上面停留的时候改变颜色.
请高手赐教!
搜索更多相关主题的帖子: gridview 光标 鼠标 颜色 
2007-05-21 08:24



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-141056-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.159914 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved