文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Gridview,DataList,Repeater 鼠标经过时行颜色变换

Gridview,DataList,Repeater 鼠标经过时行颜色变换

时间:2010-09-06  来源:June Zhang

DataList 和 Repeater 在 HTML界面表格<tr>标记中加入如下代码:

onmouseover="this.style.backgroundColor='FloralWhite'"   onmouseout="this.style.backgroundColor='' "

 

Gridview 在 RowDataBound事件中加入如下代码:

        if (e.Row.RowType == DataControlRowType.DataRow)//判定当前的行是否属于datarow类型的行
        {
            //当鼠标放上去的时候 先保存当前行的背景颜色 并给附一指定颜色
            e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='FloralWhite',this.style.fontWeight='';");
            //当鼠标离开的时候 将背景颜色还原为以前的颜色
            e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor,this.style.fontWeight='';");
        }

 

相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载