zoukankan      html  css  js  c++  java
  • griview点击后变色

      <script type="text/javascript">      

      var prevselitem = null;       

    function selectx(row) {                        

    //           if (prevselitem != null) {

    //               prevselitem.style.backgroundColor = '#ffffff'; //           }          

       row.style.backgroundColor = 'PeachPuff';           

      prevselitem = row;

           }      </script>

     <asp:GridView ID="gv" runat="server" AutoGenerateColumns="False" Width="100%"
                    CssClass="grid" OnRowDataBound="gv_RowDataBound">

    protected void gv_RowDataBound(object sender, GridViewRowEventArgs e)    

    {        

           //首先判断是否是数据行      if (e.Row.RowType == DataControlRowType.DataRow)      

          {             e.Row.Attributes.Add("onclick", e.Row.ClientID.ToString() + ".checked=true;selectx(this)");//点击行变色       

                    //  e.Row.Attributes.Add("onmouseover", "if(this!=prevselitem){this.style.backgroundColor='#Efefef'}");//当鼠标停留时更改背景色          

                    //  e.Row.Attributes.Add("onmouseout", "if(this!=prevselitem){this.style.backgroundColor='#ffffff'}");//当鼠标移开时还原背景色

            }

        }

  • 相关阅读:
    ubantu安装pip3
    ubantu更换镜像源
    git 快速上手
    python zmq(ZeorMQ)
    用python连接SQL server数据库
    Django模板url需要注意的地方
    希尔排序记录--最好写的排序
    口腔溃疡要对症-------阴虚火旺和阳虚火旺
    与大学室友,保持一定的距离
    取指 间址 执行 中断 FE IND EX INT四个触发器
  • 原文地址:https://www.cnblogs.com/heqianjin/p/3332622.html
Copyright © 2011-2022 走看看