Python语言技术文档

微信小程序技术文档

php语言技术文档

jsp语言技术文档

asp语言技术文档

C#/.NET语言技术文档

html5/css技术文档

javascript

点击排行

您现在的位置:首页 > 技术文档 > C#/.NET入门教程

asp.net下让Gridview鼠标滑过光棒变色效果

来源:中文源码网    浏览:217 次    日期:2024-03-29 02:36:43
【下载文档:  asp.net下让Gridview鼠标滑过光棒变色效果.txt 】


asp.net下让Gridview鼠标滑过光棒变色效果
复制代码 代码如下://光棒效果 protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#FFFDD7'"); e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor"); } }

相关内容