asp.net 光棒效应实现代码
更新时间:2009年12月18日 21:38:07 作者:
asp.net 光棒效应(今天刚刚学到的)
复制代码 代码如下:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "javascript:currentcolor=this.style.backgroundColor;this.style.backgroundColor='#6699f';");
e.Row.Attributes.Add("onmouseout", "javascript:this.style.backgroundColor=currentcolor;");
}
}
相关文章
详解ASP.NET Core 中的多语言支持(Localization)
本篇文章主要介绍了ASP.NET Core 中的多语言支持(Localization) ,具有一定的参考价值,有兴趣的可以了解一下2017-08-08
最新评论