62,254
社区成员
发帖
与我相关
我的任务
分享
function trclick(ck)
{
var cells = ck.getElementsByTagName("td");
if(ck.style.backgroundColor!="#00A9FF")
{
ck.style.backgroundColor="#00A9FF";
}
else
{
ck.style.backgroundColor = green;
}
}
e.Row.Attributes.Add("onclick", "javascript:trclick(this);");//点击行事件
//光棒效果
protected void gvffiche_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("onmouseover", "currentcolor=this.style.backgroundColor;this.style.backgroundColor='#dadada'");
e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=currentcolor");
}
}