鼠标划过grdAutomobile的背景色效果

来源:互联网 发布:苹果cms精仿模板 编辑:程序博客网 时间:2024/04/28 18:10
 //鼠标划过grdAutomobile的背景色
    protected void grdAutomobile_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        for (int i = -1; i < grdAutomobile.Rows.Count; i++)
        {
            //首先判断是否是数据行
            if (e.Row.RowType == DataControlRowType.DataRow)
            {
                //当鼠标停留时更改背景色
                e.Row.Attributes.Add("onmouseover", "c=this.style.backgroundColor;this.style.backgroundColor='#d1d7da'");
                //当鼠标移开时还原背景色
                e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor=c");
            }
        }
    }
原创粉丝点击