• GridView移动行变色


    1.
            protected void myGridView_RowDataBound(object sender, GridViewRowEventArgs e)
            
    {
                
    //if (e.Row.RowType == DataControlRowType.Header)
                
    //{
                
    //    e.Row.Attributes.Add("style", "background-image:url('./HeadImages/headeImage.jpg')");
                
    //}
                if (e.Row.RowType == DataControlRowType.DataRow)
                
    {
                    
    //e.Row.Attributes["onmouseover"] = "ItemOver(this)";
                    e.Row.Attributes.Add("onmouseover""e=this.style.backgroundColor; this.style.backgroundColor='#EEEEEE'");
                    e.Row.Attributes.Add(
    "onmouseout""this.style.backgroundColor=e");
                }

            }

    2.
    e.Row.Attributes["onmouseover"= "ItemOver(this)";
    if (!objbeforeItem)
    {
        
    var objbeforeItem=null;
        
    var objbeforeItembackgroundColor=null;
    }
        
    function ItemOver(obj)
    {
        
    if(objbeforeItem)
        
    {
            objbeforeItem.style.backgroundColor 
    = objbeforeItembackgroundColor;
        }

        objbeforeItembackgroundColor 
    = obj.style.backgroundColor;
        objbeforeItem 
    = obj;
        obj.style.backgroundColor 
    = "#B9D1F3";     
    }
  • 相关阅读:
    input输入框的各种样式
    Spring JdbcTemplate方法详解
    TF/IDF计算方法
    分布式日志收集系统--Chukwa
    分布式日志系统
    Iframe知识点
    拖拽事件
    面向对象知识点
    JS使用合并数组
    块元素block,内联元素inline; inline-block;
  • 原文地址:https://www.cnblogs.com/cnaspnet/p/1242230.html
Copyright © 2020-2023  润新知