zoukankan      html  css  js  c++  java
  • gridview 选中行变色

    1,在aspx中加

    <script type="text/javascript">
        var prevselitem=null;
        function selectx(row)
        {
            if(prevselitem!=null)
            {
                prevselitem.style.backgroundColor='#ffffff';
            }
            row.style.backgroundColor='PeachPuff';
            prevselitem=row;   
        }
    </script>

    2,在RowDataBound事件中加

    if (e.Row.RowType == DataControlRowType.DataRow)
        {
            e.Row.Attributes.Add("onmouseover", "if(this!=prevselitem){this.style.backgroundColor='#Efefef'}");//
    当鼠标停留时更改背景色 
            e.Row.Attributes.Add("onmouseout", "if(this!=prevselitem){this.style.backgroundColor='#ffffff'}");//
    当鼠标移开时还原背景色 
            e.Row.Attributes.Add("onclick", e.Row.ClientID.ToString() + ".checked=true;selectx(this)");
        }
  • 相关阅读:
    文件输入输出
    快速幂
    Vijos1512 SuperBrother打鼹鼠
    P2564 生日礼物
    P1886 滑动窗口
    P1540 机器翻译
    TYVj1939 玉蟾宫
    P1988 最大数
    二分图匹配
    [GDOI2017集训&做题记录&日记]
  • 原文地址:https://www.cnblogs.com/diony/p/1911364.html
Copyright © 2011-2022 走看看