c#鼠标点击TextBox控件后清空默认字体

本文介绍两种在ASP.NET中实现文本框默认提示的方法。一种是通过JavaScript脚本,另一种是在服务器端设置文本框属性。这两种方法都能在用户未输入内容前显示提示信息,并在开始输入时自动清除。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 

方案(一)

 

脚本:

 

<script type="text/javascript" language="javascript">

        //得到焦点时触发事件

        function onFocusFun(element, elementValue) {

            if (element.value == elementValue) {

                element.value = "";

                element.style.color = "";

            }

 

        }

        //离开输入框时触发事件

        function onblurFun(element, elementValue) {

 

            if (element.value == '') {

                element.style.color = "#808080";

                element.value = elementValue;

            }

 

        }

</script>

 

 

 

调用示例:

 

<tr align="center">

                  <td style="background-image:url('bg03.gif');background-position:center;background-repeat:no-repeat;height:69px">

                     <span style="color: #000000; font-family: 黑体;"><strong>用户名:</strong></span><asp:textbox id="UserName" Text="请输入用户名" runat="server" Width="100px" Height="20px" ForeColor="#808080"

                                            OnFocus="onFocusFun(this,'请输入用户名')"

                                            OnBlur="onblurFun(this,'请输入用户名')"></asp:textbox>            

                     <br />

                     <span style="color: #000000; font-family: 黑体;"><strong>密&nbsp;&nbsp;码:</strong></span><asp:textbox id="UserPass" runat="server" Width="100px" TextMode="Password" Height="20px"></asp:textbox>            

                  </td>

              </tr>

 

--------------------------------------------------------------------------------------------------------------------------------------------

 

方案(二)

 

[ 方法一]

 

前台代码:

 

<div>

    <asp:TextBox ID="txtName" runat="server"></asp:TextBox>

    <asp:TextBox ID="txtPwd" runat="server"></asp:TextBox>

    <asp:Button ID="btnLongin" runat="server" Text="提交" />

</div>

 

后台代码:

 

using System;

using System.Collections.Generic;

using System.Linq;

using System.Web;

using System.Web.UI;

using System.Web.UI.WebControls;

 

public partial class _Default : System.Web.UI.Page

{

    protected void Page_Load(object sender, EventArgs e)

    {

        //用户输入

        txtName.Attributes.Add("Value", "请输入用户名");

        txtName.Attributes.Add("OnFocus", "if(this.value=='请输入用户名') {this.value=''}");

        txtName.Attributes.Add("OnBlur", "if(this.value==''){this.value='请输入用户名'}");

        //密码输入

        txtPwd.Attributes.Add("Value", "请输入密码");

        txtPwd.Attributes.Add("OnFocus", "if(this.value=='请输入密码'){this.value=''}");

        txtPwd.Attributes.Add("OnBlur", "if(this.value==''){this.value='请输入密码'}");

 

        //

        if (!IsPostBack)

        {

            //内容

        }

    }

}

 

 

 

[ 方法二]

 

前台文本框里添加下面2个事件属性:

 

OnFocus="javascript:if(this.value=='提示文字') {this.value=''}"

 

OnBlur="javascript:if(this.value=='') {this.value='提示文字'}"

 

-----------------------------------例-----------------------------------------

 

<asp:TextBox ID="txtName" runat="server" Text="请输入用户名"

 

OnFocus="javascript:if(this.value=='请输入用户名') {this.value=''}"

 

OnBlur="javascript:if(this.value==''){this.value='请输入用户名'}">

 

</asp:TextBox>

 

 

<asp:TextBox ID="txtPwd" runat="server" Text="请输入密码"

 

OnFocus="javascript:if(this.value=='请输入密码') {this.value=''}"

 

OnBlur="javascript:if(this.value==''){this.value='请输入密码'}">

 

</asp:TextBox>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值