程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> c#鼠標點擊TextBox控件後清空默認字體

c#鼠標點擊TextBox控件後清空默認字體

編輯:C#入門知識

方案(一)

腳本:

<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>

    

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved