zoukankan      html  css  js  c++  java
  • 有条件地清空TextBox值

            /// <summary>
            /// 清空TextBox事件
            /// </summary>
            /// <param name="sender">事件对象</param>
            /// <param name="e">事件参数</param>
            protected void tb_name_PreRender(object sender, EventArgs e)
            {
                this.tb_name.Attributes.Add("onfocus","return this.value=(this.value=='请录入名称')?'':this.value");
            }

  • 相关阅读:
    线程和进程
    Map和Collection
    数组
    泛型
    堆和栈
    Java的三大特性
    Log日志
    关系运算
    switch
    main 及Scanner
  • 原文地址:https://www.cnblogs.com/pchgo/p/1353063.html
Copyright © 2011-2022 走看看